Passed
Push — main ( ee4406...b94a81 )
by Pranjal
02:25
created
src/Manager/RecordManager.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,10 +88,10 @@
 block discarded – undo
88 88
     public function getById(string $table, mixed $id): ?Model
89 89
     {
90 90
         $query = (new QueryBuilder($this->connection, $this->modelManager))
91
-                 ->select('*')
92
-                 ->from($table, 't')
93
-                 ->where('t.id = ?')
94
-                 ->setParameter(0, $id);
91
+                    ->select('*')
92
+                    ->from($table, 't')
93
+                    ->where('t.id = ?')
94
+                    ->setParameter(0, $id);
95 95
 
96 96
         return $query->first();
97 97
     }
Please login to merge, or discard this patch.