Completed
Push — staging ( 9fc02d...5845eb )
by Matthew
02:48
created
src/Repository/AbstractEndpointRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         $key = $this->returnKeyType($keyType);
90 90
 
91 91
         $query->cols(['*'])
92
-              ->where("`{$key}` = '{$id}'");
92
+                ->where("`{$key}` = '{$id}'");
93 93
 
94 94
         return $this->fireStatementAndReturn($query, true);
95 95
     }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         $key = $this->returnKeyType($keyType);
108 108
 
109 109
         $query->cols(['*'])
110
-              ->where("`{$key}` = '{$id}'");
110
+                ->where("`{$key}` = '{$id}'");
111 111
 
112 112
         return $this->fireStatementAndReturn($query);
113 113
     }
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
         $query = $this->newQuery();
126 126
 
127 127
         $query->cols(['*'])
128
-              ->where("`{$field}` = '{$value}'");
128
+                ->where("`{$field}` = '{$value}'");
129 129
 
130 130
         return $this->fireStatementAndReturn($query);
131 131
     }
Please login to merge, or discard this patch.