Skip to content

Commit ce693a8

Browse files
Fix formatting
1 parent 5d292a2 commit ce693a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Eloquent/Model.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,11 @@ public function getAttribute($key)
156156

157157
// This checks for embedded relation support.
158158
if (
159-
method_exists($this, $key)
160-
&& ! method_exists(self::class, $key)
161-
&& ! $this->hasAttributeGetMutator($key)
162-
) {
163-
return $this->getRelationValue($key);
159+
method_exists($this, $key)
160+
&& !method_exists(self::class, $key)
161+
&& !$this->hasAttributeGetMutator($key)
162+
) {
163+
return $this->getRelationValue($key);
164164
}
165165

166166
return parent::getAttribute($key);

0 commit comments

Comments
 (0)