Completed
Push — master ( 5ecf1a...74a604 )
by David Martínez
03:07
created
src/Database/Seeds/DaysSeeder.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @param $name
34
-     * @param $code
35
-     * @param $lective
33
+     * @param string $name
34
+     * @param integer $code
35
+     * @param boolean $lective
36 36
      */
37 37
     private function createDay($name, $code, $lective)
38 38
     {
Please login to merge, or discard this patch.
database/migrations/2016_11_10_203631_create_shifts_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
 /**
8 8
  * Class CreateShiftsTable
Please login to merge, or discard this patch.
database/migrations/2017_01_26_183245_create_days_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
 /**
8 8
  * Class CreateDaysTable
Please login to merge, or discard this patch.
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.
database/migrations/2017_04_27_175236_create_lessons_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
 /**
8 8
  * Class CreateLessonsTable.
Please login to merge, or discard this patch.
database/migrations/2017_04_27_195626_create_classrooms_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 CreateClassroomsTable extends Migration
8 8
 {
Please login to merge, or discard this patch.
src/Database/Seeds/ClassroomsSeeder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     }
30 30
 
31 31
     /**
32
-     * @param $name
32
+     * @param string $name
33 33
      * @param $code
34 34
      * @param $lective
35 35
      */
Please login to merge, or discard this patch.