Completed
Push — master ( f7f9ac...c628bd )
by claudio
05:45
created
app/Console/Commands/Optimise/Optimise.php 1 patch
Doc Comments   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -311,10 +311,10 @@  discard block
 block discarded – undo
311 311
     }
312 312
 
313 313
     /**
314
-     * @param array $users
315
-     * @param array $meetings
314
+     * @param string[] $users
315
+     * @param string[] $meetings
316 316
      * @param \Illuminate\Support\Collection $usersMeetings
317
-     * @return array
317
+     * @return string[]
318 318
      */
319 319
     static private function getUsersMeetingsArray($users, $meetings, \Illuminate\Support\Collection $usersMeetings)
320 320
     {
@@ -363,8 +363,9 @@  discard block
 block discarded – undo
363 363
 
364 364
     /**
365 365
      * @param \Illuminate\Support\Collection $timeSlots
366
-     * @param bool|true $free if true the array is filled with 1 for timeslots values else with 0 for timeslots values
367
-     * @return array
366
+     * @param boolean $free if true the array is filled with 1 for timeslots values else with 0 for timeslots values
367
+     * @param integer $timeslotsN
368
+     * @return string[]
368 369
      */
369 370
     static private function getAvailabilityArray(\Illuminate\Support\Collection $timeSlots, $timeslotsN, $free=true)
370 371
     {
Please login to merge, or discard this patch.
app/Console/Commands/Optimise/Solver.php 1 patch
Doc Comments   +9 added lines, -7 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     }
144 144
 
145 145
     /**
146
-     * @return \string[]
146
+     * @return string[]
147 147
      */
148 148
     public function getUsers()
149 149
     {
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
 
390 390
     /**
391 391
      * @param string $file
392
-     * @param array $data
392
+     * @param string[] $data
393 393
      * @throws OptimiseException
394 394
      */
395 395
     static private function writeCSVArrayNoKey($file, $data)
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
 
406 406
     /**
407 407
      * @param string $file
408
-     * @param array $data
408
+     * @param string[] $data
409 409
      * @param string $name
410 410
      * @throws OptimiseException
411 411
      */
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
 
423 423
     /**
424 424
      * @param string $file
425
-     * @param array $data
425
+     * @param string[] $data
426 426
      * @param string $name
427 427
      * @throws OptimiseException
428 428
      */
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
     /**
442 442
      * @param string $file
443 443
      * @param array $data
444
-     * @param array $heading
444
+     * @param string[] $heading
445 445
      * @param \Closure $writer
446 446
      * @throws OptimiseException
447 447
      */
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
     }
573 573
 
574 574
     /**
575
-     * @param $proprieties
575
+     * @param string[] $proprieties
576 576
      * @throws OptimiseException
577 577
      */
578 578
     private function checkArrayProprieties($proprieties)
@@ -583,7 +583,7 @@  discard block
 block discarded – undo
583 583
     }
584 584
 
585 585
     /**
586
-     * @param $proprieties
586
+     * @param string[] $proprieties
587 587
      * @throws OptimiseException
588 588
      */
589 589
     private function checkIntProprieties($proprieties)
@@ -597,6 +597,8 @@  discard block
 block discarded – undo
597 597
      * implementation of arraypad that doesn't change original keys<br/>
598 598
      * <strong>CAUTION: Only positive $len</strong>
599 599
      * @param array $array
600
+     * @param integer $len
601
+     * @param integer $pad
600 602
      * @return array
601 603
      */
602 604
     static private function arrayPad(array $array, $len, $pad)
Please login to merge, or discard this patch.