for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Joselfonseca\LaravelTactician\Handler;
use League\Tactician\Handler\MethodNameInflector\HandleInflector;
use Joselfonseca\LaravelTactician\Handler\MethodNameInflectorUndoable;
/**
* Handle command by calling the "handle" method.
*/
class HandleInflectorUndoable extends HandleInflector implements MethodNameInflectorUndoable
{
* {@inheritdoc}
public function inflectUndo($command, $commandHandler)
return 'executeUndo';
}
public function inflectRedo($command, $commandHandler)
return 'executeRedo';