Completed
Pull Request — master (#104)
by Thibaud
03:23
created
src/Archive/Archive.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -117,12 +117,12 @@
 block discarded – undo
117 117
     /**
118 118
      * @inheritdoc
119 119
      */
120
-     public function extract($toDirectory)
121
-     {
120
+        public function extract($toDirectory)
121
+        {
122 122
         $this->adapter->extract($this->resource, $toDirectory);
123 123
 
124 124
         return $this;
125
-     }
125
+        }
126 126
 
127 127
     /**
128 128
      * @inheritdoc
Please login to merge, or discard this patch.
src/Parser/BSDTarOutputParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
                 throw new RuntimeException(sprintf('Failed to parse mtime date from %s', $line));
79 79
             }
80 80
 
81
-             $members[] = array(
81
+                $members[] = array(
82 82
                 'location'  => $chunks[7],
83 83
                 'size'      => $chunks[5],
84 84
                 'mtime'     => $date,
Please login to merge, or discard this patch.
src/Parser/ZipOutputParser.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,9 +71,9 @@
 block discarded – undo
71 71
         return $members;
72 72
     }
73 73
 
74
-      /**
75
-     * @inheritdoc
76
-     */
74
+        /**
75
+         * @inheritdoc
76
+         */
77 77
     public function parseInflatorVersion($output)
78 78
     {
79 79
         $lines = array_values(array_filter(explode("\n", $output, 3)));
Please login to merge, or discard this patch.
src/ProcessBuilder/ProcessBuilderFactoryInterface.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
16 16
 
17 17
 interface ProcessBuilderFactoryInterface
18 18
 {
19
-     /**
20
-     * Returns a new instance of Symfony ProcessBuilder
21
-     *
22
-     * @return ProcessBuilder
23
-     *
24
-     * @throws InvalidArgumentException
25
-     */
19
+        /**
20
+         * Returns a new instance of Symfony ProcessBuilder
21
+         *
22
+         * @return ProcessBuilder
23
+         *
24
+         * @throws InvalidArgumentException
25
+         */
26 26
     public function create();
27 27
 
28 28
     /**
Please login to merge, or discard this patch.