Completed
Push — master ( 819344...58056e )
by Carlos
02:20
created
src/Command/LintCommand.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -57,40 +57,40 @@
 block discarded – undo
57 57
                 'Path to file or directory to lint'
58 58
             )
59 59
             ->addOption(
60
-               'exclude',
61
-               null,
62
-               InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
63
-               'Path to file or directory to exclude from linting'
60
+                'exclude',
61
+                null,
62
+                InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
63
+                'Path to file or directory to exclude from linting'
64 64
             )
65 65
             ->addOption(
66
-               'extensions',
67
-               null,
68
-               InputOption::VALUE_REQUIRED,
69
-               'Check only files with selected extensions (default: php)'
66
+                'extensions',
67
+                null,
68
+                InputOption::VALUE_REQUIRED,
69
+                'Check only files with selected extensions (default: php)'
70 70
             )
71 71
             ->addOption(
72
-               'jobs',
73
-               'j',
74
-               InputOption::VALUE_REQUIRED,
75
-               'Number of parraled jobs to run (default: 5)'
72
+                'jobs',
73
+                'j',
74
+                InputOption::VALUE_REQUIRED,
75
+                'Number of parraled jobs to run (default: 5)'
76 76
             )
77 77
             ->addOption(
78
-               'configuration',
79
-               'c',
80
-               InputOption::VALUE_REQUIRED,
81
-               'Read configuration from config file (default: .phplint.yml).'
78
+                'configuration',
79
+                'c',
80
+                InputOption::VALUE_REQUIRED,
81
+                'Read configuration from config file (default: .phplint.yml).'
82 82
             )
83 83
             ->addOption(
84
-               'no-configuration',
85
-               null,
86
-               InputOption::VALUE_NONE,
87
-               'Ignore default configuration file (default: .phplint.yml).'
84
+                'no-configuration',
85
+                null,
86
+                InputOption::VALUE_NONE,
87
+                'Ignore default configuration file (default: .phplint.yml).'
88 88
             )
89 89
             ->addOption(
90
-               'no-cache',
91
-               null,
92
-               InputOption::VALUE_NONE,
93
-               'Ignore cached data.'
90
+                'no-cache',
91
+                null,
92
+                InputOption::VALUE_NONE,
93
+                'Ignore cached data.'
94 94
             );
95 95
     }
96 96
 
Please login to merge, or discard this patch.