Passed
Pull Request — master (#10)
by
unknown
03:02
created
src/Zicht/Tool/Command/InfoCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
  */
6 6
 namespace Zicht\Tool\Command;
7 7
 
8
-use Symfony\Component\Console\Input;
9 8
 use Symfony\Component\Console\Output\OutputInterface;
10 9
 use Symfony\Component\Console\Input\InputInterface;
11 10
 
Please login to merge, or discard this patch.
src/Zicht/Tool/Container/Container.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      * Return the raw context value at the specified path.
184 184
      *
185 185
      * @param array $path
186
-     * @return mixed
186
+     * @return string|null
187 187
      */
188 188
     public function get($path)
189 189
     {
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      * This is useful for commands that need the shell regardless of the 'explain' value setting.
278 278
      *
279 279
      * @param string $cmd
280
-     * @return mixed
280
+     * @return string|null
281 281
      */
282 282
     public function helperExec($cmd)
283 283
     {
Please login to merge, or discard this patch.
src/Zicht/Tool/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
                 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'),
159 159
                 new InputOption('--no-cache', '-c', InputOption::VALUE_NONE, 'Force recompilation of container code'),
160 160
                 new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display this application version.'),
161
-                new InputOption('--no-ansi', '',  InputOption::VALUE_NONE, 'Disable ANSI output'),
161
+                new InputOption('--no-ansi', '', InputOption::VALUE_NONE, 'Disable ANSI output'),
162 162
             )
163 163
         );
164 164
     }
Please login to merge, or discard this patch.