Completed
Push — master ( 55d707...3e0afc )
by Greg
02:16
created
examples/src/Robo/Plugin/Commands/ExampleCommands.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -348,6 +348,9 @@
 block discarded – undo
348 348
 {
349 349
     protected $message;
350 350
 
351
+    /**
352
+     * @param string $message
353
+     */
351 354
     public function __construct($message)
352 355
     {
353 356
         $this->message = $message;
Please login to merge, or discard this patch.
examples/src/Robo/Plugin/Commands/StdinCommands.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
     /**
13 13
      * @command cat
14
-     * @param string $file
15 14
      * @default $file -
16 15
      */
17 16
     public function cat(InputInterface $input)
Please login to merge, or discard this patch.
src/Collection/Collection.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      *
213 213
      * @param string $method
214 214
      * @param string $name
215
-     * @param callable|\Robo\Contract\TaskInterface $task
215
+     * @param callable $task
216 216
      * @param string $nameOfTaskToAdd
217 217
      *
218 218
      * @return $this
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
     /**
284 284
      * Return the list of task names added to this collection.
285 285
      *
286
-     * @return string[]
286
+     * @return integer[]
287 287
      */
288 288
     public function taskNames()
289 289
     {
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
     }
357 357
 
358 358
     /**
359
-     * @param int|string $name
359
+     * @param string $name
360 360
      * @param \Robo\Collection\Element $taskGroup
361 361
      *
362 362
      * @return $this
@@ -648,7 +648,7 @@  discard block
 block discarded – undo
648 648
     }
649 649
 
650 650
     /**
651
-     * @param \Robo\Contract\TaskInterface|\Robo\Collection\NestedCollectionInterface|\Robo\Contract\WrappedTaskInterface $task
651
+     * @param TaskInterface $task
652 652
      *
653 653
      * @return \Robo\Result
654 654
      */
Please login to merge, or discard this patch.
src/Common/ResourceExistenceChecker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      * @param string $type
49 49
      *   Allowed values: "file", "dir", "fileAndDir".
50 50
      *
51
-     * @return bool
51
+     * @return boolean|null
52 52
      */
53 53
     protected function checkResource($resource, $type)
54 54
     {
Please login to merge, or discard this patch.
src/GlobalOptionsEventListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
      *
131 131
      * @param string $value
132 132
      *
133
-     * @return array
133
+     * @return boolean[]
134 134
      */
135 135
     protected function splitConfigKeyValue($value)
136 136
     {
Please login to merge, or discard this patch.
src/Runner.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
     }
137 137
 
138 138
     /**
139
-     * @param array $argv
139
+     * @param string[] $argv
140 140
      * @param null|string $appName
141 141
      * @param null|string $appVersion
142 142
      * @param null|\Symfony\Component\Console\Output\OutputInterface $output
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      * @param null|\Symfony\Component\Console\Input\InputInterface $input
176 176
      * @param null|\Symfony\Component\Console\Output\OutputInterface $output
177 177
      * @param null|\Robo\Application $app
178
-     * @param array[] $commandFiles
178
+     * @param null|string $commandFiles
179 179
      * @param null|ClassLoader $classLoader
180 180
      *
181 181
      * @return int
@@ -535,7 +535,7 @@  discard block
 block discarded – undo
535 535
     }
536 536
 
537 537
     /**
538
-     * @param $selfUpdateRepository
538
+     * @param null|string $selfUpdateRepository
539 539
      *
540 540
      * @return $this
541 541
      */
Please login to merge, or discard this patch.
src/Task/ApiGen/ApiGen.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     }
166 166
 
167 167
     /**
168
-     * @param array|string|\Traversable $src
168
+     * @param string $src
169 169
      *   One or more source values.
170 170
      *
171 171
      * @return $this
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
     }
191 191
 
192 192
     /**
193
-     * @param array|string $exts
193
+     * @param string $exts
194 194
      *   One or more extensions.
195 195
      *
196 196
      * @return $this
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-     * @param array|string $exclude
205
+     * @param string[] $exclude
206 206
      *   One or more exclusions.
207 207
      *
208 208
      * @return $this
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
     }
217 217
 
218 218
     /**
219
-     * @param array|string|\Traversable $path
219
+     * @param \SplDoublyLinkedList $path
220 220
      *   One or more skip-doc-path values.
221 221
      *
222 222
      * @return $this
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
     }
245 245
 
246 246
     /**
247
-     * @param array|string $charset
247
+     * @param string[] $charset
248 248
      *   One or more charsets.
249 249
      *
250 250
      * @return $this
Please login to merge, or discard this patch.
src/Task/Base/loadTasks.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 trait loadTasks
5 5
 {
6 6
     /**
7
-     * @param string|\Robo\Contract\CommandInterface $command
7
+     * @param string $command
8 8
      *
9 9
      * @return \Robo\Task\Base\Exec|\Robo\Collection\CollectionBuilder
10 10
      */
Please login to merge, or discard this patch.
src/Task/Base/ParallelExec.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @param string|\Robo\Contract\CommandInterface $command
73
+     * @param string $command
74 74
      *
75 75
      * @return $this
76 76
      */
Please login to merge, or discard this patch.