Skip to content

Commit 7643759

Browse files
committed
fixed CS
1 parent 630f313 commit 7643759

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Command/RouterDebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected function configure()
5555
))
5656
->setDefinition(array(
5757
new InputArgument('name', InputArgument::OPTIONAL, 'A route name'),
58-
new InputOption('show-controllers', null, InputOption::VALUE_NONE, 'Show assigned controllers in overview'),
58+
new InputOption('show-controllers', null, InputOption::VALUE_NONE, 'Show assigned controllers in overview'),
5959
new InputOption('format', null, InputOption::VALUE_REQUIRED, 'To output route(s) in other formats', 'txt'),
6060
new InputOption('raw', null, InputOption::VALUE_NONE, 'To output raw route(s)'),
6161
))

Console/Helper/DescriptorHelper.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ class DescriptorHelper extends BaseDescriptorHelper
3030
public function __construct()
3131
{
3232
$this
33-
->register('txt', new TextDescriptor())
34-
->register('xml', new XmlDescriptor())
33+
->register('txt', new TextDescriptor())
34+
->register('xml', new XmlDescriptor())
3535
->register('json', new JsonDescriptor())
36-
->register('md', new MarkdownDescriptor())
36+
->register('md', new MarkdownDescriptor())
3737
;
3838
}
3939
}

0 commit comments

Comments
 (0)