Completed
Branch master (a57439)
by Ronan
02:44
created
src/Features/Relationship/HasMany.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $finder = Orm::finder($modelClass);
41 41
 
42 42
         return $finder->select()
43
-                      ->where($foreignAttribute, $this->getAttribute($attribute))
44
-                      ->execute();
43
+                        ->where($foreignAttribute, $this->getAttribute($attribute))
44
+                        ->execute();
45 45
     }
46 46
 }
Please login to merge, or discard this patch.
src/Features/Relationship/BelongsTo.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $finder = Orm::finder($modelClass);
41 41
 
42 42
         return $finder->select()
43
-                      ->where($foreignAttribute, $this->getAttribute($attribute))
44
-                      ->one();
43
+                        ->where($foreignAttribute, $this->getAttribute($attribute))
44
+                        ->one();
45 45
     }
46 46
 }
Please login to merge, or discard this patch.
src/Features/Relationship/HasOne.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $finder = Orm::finder($modelClass);
41 41
 
42 42
         return $finder->select()
43
-                      ->where($foreignAttribute, $this->getAttribute($attribute))
44
-                      ->one();
43
+                        ->where($foreignAttribute, $this->getAttribute($attribute))
44
+                        ->one();
45 45
     }
46 46
 }
Please login to merge, or discard this patch.