Browse Source

refactoring the input class.

Taylor Otwell 13 years ago
parent
commit
ccb6bc6b8a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/input.php

+ 1 - 1
laravel/input.php

@@ -38,7 +38,7 @@ class Input {
 	 */
 	public static function has($key)
 	{
-		return ( ! is_null(static::get($key)) and trim((string) static::get($key)) !== '');
+		return trim((string) static::get($key)) !== '';
 	}
 
 	/**