Passed
Push — main ( 0cc05e...929529 )
by Sammy
05:31 queued 04:04
created
src/TableModelSelector.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,9 @@
 block discarded – undo
13 13
 
14 14
     public function __construct(string $class)
15 15
     {
16
-        if(class_exists($class) === false)
17
-            throw new \Exception('CLASS_NOT_FOUND');
16
+        if(class_exists($class) === false) {
17
+                    throw new \Exception('CLASS_NOT_FOUND');
18
+        }
18 19
         
19 20
         $this->class = $class;
20 21
         $this->table = $this->class::table();
Please login to merge, or discard this patch.
src/TightModelSelector.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
         if (isset($options['limit'])) {
54 54
             if(is_array($options['limit'])){
55 55
                 $this->statement()->limit($options['limit'][0], $options['limit'][1]);
56
-            }
57
-            elseif(is_numeric($options['limit'])){
56
+            } elseif(is_numeric($options['limit'])){
58 57
                 $this->statement()->limit($options['limit']);
59 58
             }
60 59
         }
Please login to merge, or discard this patch.
src/TableModel.php 1 patch
Braces   +10 added lines, -8 removed lines patch added patch discarded remove patch
@@ -85,11 +85,13 @@  discard block
 block discarded – undo
85 85
         $class_name = $called_class->getShortName();
86 86
 
87 87
         // try constants
88
-        if (($table_name = $called_class->getConstant('TABLE_NAME')) !== false)
89
-            return $table_name;
88
+        if (($table_name = $called_class->getConstant('TABLE_NAME')) !== false) {
89
+                    return $table_name;
90
+        }
90 91
 
91
-        if (defined($const_name = 'TABLE_' . strtoupper($class_name)))
92
-            return constant($const_name);
92
+        if (defined($const_name = 'TABLE_' . strtoupper($class_name))) {
93
+                    return constant($const_name);
94
+        }
93 95
         
94 96
         // fallback to convention
95 97
         return strtolower($class_name);
@@ -106,8 +108,7 @@  discard block
 block discarded – undo
106 108
         if($this->isNew()){
107 109
             // $table_row = new Row($this, $model_data);
108 110
             $table_row = new Row($this->schema, static::table(), $model_data);
109
-        }
110
-        else{
111
+        } else{
111 112
             $table_row = new Row($this->schema);
112 113
             $table_row->load($model_data);
113 114
         }
@@ -168,8 +169,9 @@  discard block
 block discarded – undo
168 169
         else if (is_scalar($arg1) && count($table->primaryKeys()) === 1) {
169 170
             $pk = current($table->primaryKeys())->name();
170 171
             $unique_identifiers = [$pk => $arg1];
171
-        } else
172
-            throw new CruditesException('ARGUMENTS_ARE_NOT_ACTIONNABLE');
172
+        } else {
173
+                    throw new CruditesException('ARGUMENTS_ARE_NOT_ACTIONNABLE');
174
+        }
173 175
 
174 176
 
175 177
         // Find the unique identifier(s) in the database.
Please login to merge, or discard this patch.