| 1 | <?php |
||
| 17 | class MviCommand extends Command |
||
| 18 | { |
||
| 19 | const DIR_MD5 = 'md5'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The base of this application |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected $baseDir; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Constructor. |
||
| 30 | * |
||
| 31 | * @param string|null $name The name of the command; passing null means it must be set in configure() |
||
| 32 | */ |
||
| 33 | public function __construct($name = null) |
||
| 38 | } |
||
| 39 |