Passed
Push — master ( fc739c...89cc6e )
by Henri
01:20
created
examples/Models/User.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -5,12 +5,12 @@
 block discarded – undo
5 5
 use HnrAzevedo\Datamanager\Model as Entity;
6 6
 
7 7
 /** 
8
-  * @property string $name 
9
-  * @property string $email 
10
-  * @property string $password
11
-  * @property string birth
12
-  * @property string register
13
-  */ 
8
+ * @property string $name 
9
+ * @property string $email 
10
+ * @property string $password
11
+ * @property string birth
12
+ * @property string register
13
+ */ 
14 14
 class User extends Entity{
15 15
 
16 16
     private array $fields = [];
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
   * @property string birth
12 12
   * @property string register
13 13
   */ 
14
-class User extends Entity{
14
+class User extends Entity {
15 15
 
16 16
     private array $fields = [];
17 17
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
          * @param string Table name
26 26
          * @param string Primary key column
27 27
          */
28
-        parent::create('user','id');
28
+        parent::create('user', 'id');
29 29
     }
30 30
 
31 31
 }
32 32
\ No newline at end of file
Please login to merge, or discard this patch.