| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | protected function configure() |
||
| 17 | { |
||
| 18 | $this->setName('revision:restore') |
||
| 19 | ->addArgument('tableName', Argument::REQUIRED, "Table name") |
||
| 20 | ->addArgument('originalId', Argument::REQUIRED, "Original Id") |
||
| 21 | ->addArgument('revisionId', Argument::REQUIRED, "Revision id") |
||
| 22 | ->setDescription('Restore a record from a specific revision of a table'); |
||
| 23 | } |
||
| 41 |