Completed
Pull Request — master (#435)
by
unknown
01:54
created
src/Hal/Component/Issue/Issuer.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     }
131 131
 
132 132
     /**
133
-     * @param $status
133
+     * @param integer $status
134 134
      */
135 135
     protected function terminate($status)
136 136
     {
@@ -139,6 +139,7 @@  discard block
 block discarded – undo
139 139
 
140 140
     /**
141 141
      * @param $log
142
+     * @param string $logfile
142 143
      * @return $this
143 144
      */
144 145
     protected function log($logfile, $log)
@@ -152,7 +153,7 @@  discard block
 block discarded – undo
152 153
     }
153 154
 
154 155
     /**
155
-     * @param $debugKey
156
+     * @param string $debugKey
156 157
      * @param $value
157 158
      * @return $this
158 159
      */
@@ -163,7 +164,7 @@  discard block
 block discarded – undo
163 164
     }
164 165
 
165 166
     /**
166
-     * @param $debugKey
167
+     * @param string $debugKey
167 168
      * @return $this
168 169
      */
169 170
     public function clear($debugKey)
Please login to merge, or discard this patch.
src/Hal/Metric/Class_/Coupling/ExternalsVisitor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -136,6 +136,9 @@
 block discarded – undo
136 136
         }
137 137
     }
138 138
 
139
+    /**
140
+     * @param string|null $dependency
141
+     */
139 142
     private function pushToDependencies(array &$dependencies, $dependency)
140 143
     {
141 144
         $lowercase = strtolower($dependency);
Please login to merge, or discard this patch.
src/Hal/Application/Config/File/ConfigFileReaderJson.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
     private function resolvePath($path)
92 92
     {
93 93
         if (DIRECTORY_SEPARATOR !== $path[0]) {
94
-             $path = dirname($this->filename) . DIRECTORY_SEPARATOR . $path;
94
+                $path = dirname($this->filename) . DIRECTORY_SEPARATOR . $path;
95 95
         }
96 96
 
97 97
         return $path;
Please login to merge, or discard this patch.
src/Hal/Metric/System/Packages/Composer/Composer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
     private $config;
20 20
 
21 21
     /**
22
-     * @param array $files
23 22
      */
24 23
     public function __construct(Config $config)
25 24
     {
Please login to merge, or discard this patch.
src/Hal/Report/Html/Reporter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -185,8 +185,8 @@
 block discarded – undo
185 185
     }
186 186
 
187 187
     /**
188
-     * @param $source
189
-     * @param $destination
188
+     * @param string $source
189
+     * @param string $destination
190 190
      * @return $this
191 191
      */
192 192
     private function renderPage($source, $destination, Consolidated $consolidated, $history)
Please login to merge, or discard this patch.