Fixed various typos throughout laravel folder.

Signed-off-by: Josh Miller <josh@joshmmiller.com>
This commit is contained in:
Josh Miller
2012-07-21 20:18:55 -04:00
parent 845023fc80
commit 0ea30993d4
36 changed files with 159 additions and 159 deletions

View File

@@ -768,7 +768,7 @@ abstract class Model {
$underscored = array('with', 'find');
// Some methods need to be accessed both staticly and non-staticly so we'll
// Some methods need to be accessed both statically and non-statically so we'll
// keep underscored methods of those methods and intercept calls to them
// here so they can be called either way on the model instance.
if (in_array($method, $underscored))

View File

@@ -38,7 +38,7 @@ class Query {
);
/**
* Creat a new query instance for a model.
* Create a new query instance for a model.
*
* @param Model $model
* @return void
@@ -118,7 +118,7 @@ class Query {
$new = new $class(array(), true);
// We need to set the attributes manually in case the accessible property is
// set on the array which will prevent the mass assignemnt of attributes if
// set on the array which will prevent the mass assignment of attributes if
// we were to pass them in using the constructor or fill methods.
$new->fill_raw($result);