From a675b05237f8b5ef8f7b5741c7ca77f76dfe941b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 21 Nov 2011 19:13:32 -0600 Subject: [PATCH] fixing some commits i accidently overwrote. --- laravel/autoloader.php | 4 ++-- laravel/validator.php | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/laravel/autoloader.php b/laravel/autoloader.php index 288e6687..1cbbf4e1 100644 --- a/laravel/autoloader.php +++ b/laravel/autoloader.php @@ -53,8 +53,8 @@ public static function load($class) protected static function find($class) { // After PHP namespaces were introduced, most libaries ditched underscores for - // for namespaces to indicate the class directory hierarchy. We will check for - // the presence of namespace slashes to determine the directory separator. + // namespaces to indicate the class directory hierarchy. We will check for the + // presence of namespace slashes to determine the directory separator. $separator = (strpos($class, '\\') !== false) ? '\\' : '_'; $library = substr($class, 0, strpos($class, $separator)); diff --git a/laravel/validator.php b/laravel/validator.php index 1157209e..7b6f1e3e 100644 --- a/laravel/validator.php +++ b/laravel/validator.php @@ -394,7 +394,7 @@ protected function validate_unique($attribute, $value, $parameters) } /** - * Validate than an attribute is a valid e-mail address. + * Validate that an attribute is a valid e-mail address. * * @param string $attribute * @param mixed $value @@ -406,7 +406,7 @@ protected function validate_email($attribute, $value) } /** - * Validate than an attribute is a valid URL. + * Validate that an attribute is a valid URL. * * @param string $attribute * @param mixed $value @@ -444,7 +444,7 @@ protected function validate_image($attribute, $value) } /** - * Validate than an attribute contains only alphabetic characters. + * Validate that an attribute contains only alphabetic characters. * * @param string $attribute * @param mixed $value @@ -456,7 +456,7 @@ protected function validate_alpha($attribute, $value) } /** - * Validate than an attribute contains only alpha-numeric characters. + * Validate that an attribute contains only alpha-numeric characters. * * @param string $attribute * @param mixed $value @@ -468,7 +468,7 @@ protected function validate_alpha_num($attribute, $value) } /** - * Validate than an attribute contains only alpha-numeric characters, dashes, and underscores. + * Validate that an attribute contains only alpha-numeric characters, dashes, and underscores. * * @param string $attribute * @param mixed $value