Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Commit f6ad904

Browse files
committed
Fixing memory exhaustion in find()
Closes #283 and #191
1 parent 49ef00d commit f6ad904

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Ardent/Ardent.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,8 @@ public static function find($id, $columns = array('*')) {
908908
if (static::$throwOnFind && $debug[1]['function'] != 'findOrFail') {
909909
return self::findOrFail($id, $columns);
910910
} else {
911-
return parent::find($id, $columns);
911+
//mimicking Eloquent's __callStatic() + __call() behaviour so we don't loop forever
912+
return (new static)->__call('find', [$id, $columns]);
912913
}
913914
}
914915

0 commit comments

Comments
 (0)