Passed
Pull Request — master (#29)
by
unknown
01:56
created
example/Models/StudentCourse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
      */
12 12
     public function __construct()
13 13
     {
14
-        parent::__construct("student_course", ["idstudent", "idcourse"], "id", false);
14
+        parent::__construct("student_course", [ "idstudent", "idcourse" ], "id", false);
15 15
     }
16 16
 }
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
example/Models/Student.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function __construct()
13 13
     {
14
-        parent::__construct("students", ["name", "birthdate"], "id", false);
14
+        parent::__construct("students", [ "name", "birthdate" ], "id", false);
15 15
     }
16 16
 
17 17
     /**
Please login to merge, or discard this patch.
example/Models/Course.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function __construct()
13 13
     {
14
-        parent::__construct("courses", ["name"], "id", false);
14
+        parent::__construct("courses", [ "name" ], "id", false);
15 15
     }
16 16
 
17 17
     /**
Please login to merge, or discard this patch.