Completed
Push — master ( 2cde75...6c52d6 )
by Arne
02:04
created
src/Container.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -81,6 +81,7 @@
 block discarded – undo
81 81
 
82 82
     /**
83 83
      * {@inheritdoc}
84
+     * @param string $id
84 85
      */
85 86
     public function get($id)
86 87
     {
Please login to merge, or discard this patch.
src/Cli/Command/DumpCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $storeman->dump(
28 28
             $input->getArgument('path'),
29
-            $input->getOption(  'revision') ? (int)$input->getOption('revision') : null,
29
+            $input->getOption('revision') ? (int)$input->getOption('revision') : null,
30 30
             $input->getOption('vault'),
31 31
             new SynchronizationProgressListener($output)
32 32
         );
Please login to merge, or discard this patch.
src/ConfigurationFileReader.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,7 @@
 block discarded – undo
45 45
             /** @var Configuration $configuration */
46 46
             $configuration = new $className();
47 47
             $configuration->exchangeArray($array);
48
-        }
49
-        catch (\InvalidArgumentException $exception)
48
+        } catch (\InvalidArgumentException $exception)
50 49
         {
51 50
             throw new ConfigurationException('', 0, $exception);
52 51
         }
Please login to merge, or discard this patch.