| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | static function setUpCommands(Definition $definition, $commandDefinitions) |
||
| 20 | { |
||
| 21 | $definition->name = 'json-diff'; |
||
| 22 | $definition->version = 'v2.0.0'; |
||
| 23 | $definition->description = 'JSON diff and apply tool for PHP, https://github.com/swaggest/json-diff'; |
||
| 24 | |||
| 25 | $commandDefinitions->diff = Diff::definition(); |
||
| 26 | $commandDefinitions->apply = Apply::definition(); |
||
| 27 | $commandDefinitions->rearrange = Rearrange::definition(); |
||
| 28 | $commandDefinitions->info = Info::definition(); |
||
| 29 | } |
||
| 30 | } |