Skip to content

Commit 34d83a7

Browse files
committed
fixed CS
1 parent 984d82c commit 34d83a7

File tree

7 files changed

+24
-12
lines changed

7 files changed

+24
-12
lines changed

src/Symfony/Component/Console/Application.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -936,12 +936,12 @@ protected function getDefaultInputDefinition()
936936
return new InputDefinition(array(
937937
new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'),
938938

939-
new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message'),
940-
new InputOption('--quiet', '-q', InputOption::VALUE_NONE, 'Do not output any message'),
941-
new InputOption('--verbose', '-v|vv|vvv', InputOption::VALUE_NONE, 'Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug'),
942-
new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display this application version'),
943-
new InputOption('--ansi', '', InputOption::VALUE_NONE, 'Force ANSI output'),
944-
new InputOption('--no-ansi', '', InputOption::VALUE_NONE, 'Disable ANSI output'),
939+
new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message'),
940+
new InputOption('--quiet', '-q', InputOption::VALUE_NONE, 'Do not output any message'),
941+
new InputOption('--verbose', '-v|vv|vvv', InputOption::VALUE_NONE, 'Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug'),
942+
new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display this application version'),
943+
new InputOption('--ansi', '', InputOption::VALUE_NONE, 'Force ANSI output'),
944+
new InputOption('--no-ansi', '', InputOption::VALUE_NONE, 'Disable ANSI output'),
945945
new InputOption('--no-interaction', '-n', InputOption::VALUE_NONE, 'Do not ask any interactive question'),
946946
));
947947
}

src/Symfony/Component/Validator/Constraints/False.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@
1919
*
2020
* @api
2121
*/
22-
class False extends IsFalse {}
22+
class False extends IsFalse
23+
{
24+
}

src/Symfony/Component/Validator/Constraints/FalseValidator.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@
1616
*
1717
* @api
1818
*/
19-
class FalseValidator extends IsFalseValidator {}
19+
class FalseValidator extends IsFalseValidator
20+
{
21+
}

src/Symfony/Component/Validator/Constraints/Null.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@
1919
*
2020
* @api
2121
*/
22-
class Null extends IsNull {}
22+
class Null extends IsNull
23+
{
24+
}

src/Symfony/Component/Validator/Constraints/NullValidator.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@
1616
*
1717
* @api
1818
*/
19-
class NullValidator extends IsNullValidator {}
19+
class NullValidator extends IsNullValidator
20+
{
21+
}

src/Symfony/Component/Validator/Constraints/True.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@
1919
*
2020
* @api
2121
*/
22-
class True extends IsTrue {}
22+
class True extends IsTrue
23+
{
24+
}

src/Symfony/Component/Validator/Constraints/TrueValidator.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@
1616
*
1717
* @api
1818
*/
19-
class TrueValidator extends IsTrueValidator {}
19+
class TrueValidator extends IsTrueValidator
20+
{
21+
}

0 commit comments

Comments
 (0)