| 1 | <?php |
||
| 11 | class ResetCommand extends ChangeCommand |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $done = 'Rolled back: '; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected $pending = 'Rolling back:'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var boolean |
||
| 25 | */ |
||
| 26 | protected $reversed = true; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Configures the current command. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | protected function configure() |
||
| 37 | } |
||
| 38 |