| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class ChangelogCommand extends AbstractCommand |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | protected function configure() |
||
| 25 | { |
||
| 26 | $this |
||
| 27 | ->setName('changelog') |
||
| 28 | ->setDescription('Displays changes included in the current SVN-Buddy release'); |
||
| 29 | |||
| 30 | parent::configure(); |
||
| 31 | } |
||
| 32 | |||
| 33 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 41 | } |
||
| 42 | |||
| 44 |