Completed
Push — master ( a99e2b...88ec99 )
by personal
02:17
created
src/Hal/Component/Token/Tokenizer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
     /**
84 84
      * Clean php source
85 85
      *
86
-     * @param $content
86
+     * @param string $content
87 87
      * @return string
88 88
      */
89 89
     private function cleanup($content) {
Please login to merge, or discard this patch.
src/Hal/Component/OOP/Extractor/MethodExtractor.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      * Extracts visibility
134 134
      *
135 135
      * @param ReflectedMethod $method
136
-     * @param $n
136
+     * @param integer $n
137 137
      * @param TokenCollection $tokens
138 138
      * @return $this
139 139
      */
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      * Extracts state
159 159
      *
160 160
      * @param ReflectedMethod $method
161
-     * @param $n
161
+     * @param integer $n
162 162
      * @param TokenCollection $tokens
163 163
      * @return $this
164 164
      */
@@ -233,8 +233,6 @@  discard block
 block discarded – undo
233 233
      * Extracts calls of method
234 234
      *
235 235
      * @param ReflectedMethod $method
236
-     * @param integer $n
237
-     * @param TokenCollection $tokens
238 236
      * @return $this
239 237
      */
240 238
     private function extractCalls(ReflectedMethod $method) {
@@ -262,6 +260,7 @@  discard block
 block discarded – undo
262 260
      * Extract the list of returned values
263 261
      *
264 262
      * @param ReflectedMethod $method
263
+     * @param integer $n
265 264
      * @return $this
266 265
      */
267 266
     private function extractReturns(ReflectedMethod $method, $n, TokenCollection $tokens) {
Please login to merge, or discard this patch.
src/Hal/Component/OOP/Reflected/ReflectedMethod.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     }
164 164
 
165 165
     /**
166
-     * @return TokenCollection
166
+     * @return \Hal\Component\Token\TokenCollection
167 167
      */
168 168
     public function getTokens()
169 169
     {
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     }
366 366
 
367 367
     /**
368
-     * @param $class
368
+     * @param string|null $class
369 369
      * @return $this
370 370
      */
371 371
     public function pushInstanciedClass($class) {
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
     }
387 387
 
388 388
     /**
389
-     * @param $call
389
+     * @param string $call
390 390
      * @return $this
391 391
      */
392 392
     public function pushInternalCall($call)
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
     }
405 405
 
406 406
     /**
407
-     * @param $call
407
+     * @param string $call
408 408
      * @return $this
409 409
      */
410 410
     public function pushExternalCall($call)
Please login to merge, or discard this patch.
src/Hal/Component/Chart/Graphviz.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     /**
21 21
      * Checks installation of graphviz
22 22
      *
23
-     * @return boolean
23
+     * @return integer
24 24
      */
25 25
     public function isAvailable() {
26 26
         $result = shell_exec('circo -V 2>&1');
Please login to merge, or discard this patch.
src/Hal/Component/OOP/Resolver/TypeResolver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     /**
34 34
      * Resolves type of given string
35 35
      *
36
-     * @param $string
36
+     * @param string $string
37 37
      * @return string
38 38
      */
39 39
     public function resolve($string)
Please login to merge, or discard this patch.
src/Hal/Component/Token/TokenCollection.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@
 block discarded – undo
52 52
     /**
53 53
      * Extract part of tokens (equivalent of array_slice())
54 54
      *
55
-     * @param $start
56
-     * @param $end
55
+     * @param integer $start
56
+     * @param integer $end
57 57
      * @return TokenCollection
58 58
      */
59 59
     public function extract($start, $end) {
Please login to merge, or discard this patch.