Current path: home/webdevt/prestashop17/vendor/league/tactician/src/Handler/MethodNameInflector/
?? Go up: /home/webdevt/prestashop17/vendor/league/tactician/src/Handler
<?php
namespace League\Tactician\Handler\MethodNameInflector;
/**
* Handle command by calling the "handle" method.
*/
class HandleInflector implements MethodNameInflector
{
/**
* {@inheritdoc}
*/
public function inflect($command, $commandHandler)
{
return 'handle';
}
}