Browse Source

Missed a semi-colon.

Signed-off-by: Jason Lewis <jason.lewis1991@gmail.com>
Jason Lewis 12 years ago
parent
commit
6d5239bf30
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/database/eloquent/model.php

+ 1 - 1
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