1: <?php
2: /**
3: * @author Jefferson González
4: * @license MIT
5: * @link http://github.com/peg-org/peg-custom Source code.
6: */
7:
8: namespace Peg\Custom\CommandLine;
9:
10: /**
11: * Class that represents an action executed when a specific command is called.
12: */
13: abstract class Action
14: {
15:
16: /**
17: * Method called by the command if it was executed.
18: */
19: abstract public function OnCall(Command $command);
20: }