Completed
Push — master ( 954bd6...a10c95 )
by Shcherbak
106:21 queued 91:17
created
src/Pattern/Patterns/MethodPattern.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
 
96 96
     /**
97
-     * @param string|QueryStrategy $name
97
+     * @param Strict $name
98 98
      * @return $this
99 99
      */
100 100
     public function withName($name) {
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
 
327 327
     /**
328 328
      * @param Token $token
329
-     * @return mixed
329
+     * @return boolean
330 330
      * @throws \Exception
331 331
      */
332 332
     private function isValidDocComment(Token $token) {
Please login to merge, or discard this patch.
src/Pattern/Patterns/ParametersPattern.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
     /**
153 153
      * @param Token $token
154 154
      * @param Collection $section
155
-     * @param $index
155
+     * @param integer $index
156 156
      * @return Token
157 157
      */
158 158
     private function getEndArray(Token $token, Collection $section, $index) {
Please login to merge, or discard this patch.
src/Collection/BaseCollection.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
 
32 32
     /**
33
-     * @param array $items
33
+     * @param Token[] $items
34 34
      */
35 35
     public function __construct(array $items = []) {
36 36
 
@@ -147,8 +147,8 @@  discard block
 block discarded – undo
147 147
      * Works as array_slice
148 148
      *
149 149
      *
150
-     * @param $offset
151
-     * @param null $length
150
+     * @param integer $offset
151
+     * @param integer $length
152 152
      * @return $this
153 153
      */
154 154
     public function slice($offset, $length = null) {
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
     /**
390 390
      * Remove all tokens in collection
391 391
      *
392
-     * @return Collection
392
+     * @return BaseCollection
393 393
      */
394 394
     public function remove() {
395 395
       foreach ($this as $token) {
Please login to merge, or discard this patch.