From 6d5239bf3099842535f110518e89e51d1e766f3e Mon Sep 17 00:00:00 2001 From: Jason Lewis Date: Sun, 3 Jun 2012 19:47:44 +0930 Subject: [PATCH] Missed a semi-colon. Signed-off-by: Jason Lewis --- laravel/database/eloquent/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/database/eloquent/model.php b/laravel/database/eloquent/model.php index 95e14ab5..2c28b8f9 100644 --- a/laravel/database/eloquent/model.php +++ b/laravel/database/eloquent/model.php @@ -744,7 +744,7 @@ abstract class Model { return static::$$method; } - $underscored = array('with', 'find') + $underscored = array('with', 'find'); // Some methods need to be accessed both staticly and non-staticly so we'll // keep underscored methods of those methods and intercept calls to them