Completed
Push — master ( 57b9da...49faca )
by David Martínez
02:06
created
database/migrations/2017_04_20_183506_create_timeslots_table.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Illuminate\Support\Facades\Schema;
4
-use Illuminate\Database\Schema\Blueprint;
5 3
 use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Support\Facades\Schema;
6 6
 
7 7
 class CreateTimeslotsTable extends Migration
8 8
 {
Please login to merge, or discard this patch.
src/Database/Seeds/ShiftsSeeder.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,9 +25,10 @@
 block discarded – undo
25 25
     }
26 26
 
27 27
     /**
28
-     * @param $name
28
+     * @param string $name
29 29
      * @param $code
30 30
      * @param $lective
31
+     * @param string $torn
31 32
      */
32 33
     private function createShift($torn, $name)
33 34
     {
Please login to merge, or discard this patch.
src/Database/Seeds/TimeslotsSeeder.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,9 +35,11 @@
 block discarded – undo
35 35
     }
36 36
 
37 37
     /**
38
-     * @param $name
38
+     * @param string $name
39 39
      * @param $code
40 40
      * @param $lective
41
+     * @param string $init_hour
42
+     * @param string $final_hour
41 43
      */
42 44
     private function createTimeslot($name, $init_hour, $final_hour)
43 45
     {
Please login to merge, or discard this patch.