Commit dc01b3c2 authored by Taylor Otwell's avatar Taylor Otwell

added default value to Input::file and defaulted Validator::make.

parent 9f7da5cb
...@@ -76,7 +76,7 @@ class Input { ...@@ -76,7 +76,7 @@ class Input {
* @param mixed $default * @param mixed $default
* @return array * @return array
*/ */
public static function file($key, $default = null) public static function file($key = null, $default = null)
{ {
return Arr::get($_FILES, $key, $default); return Arr::get($_FILES, $key, $default);
} }
......
...@@ -29,7 +29,7 @@ class Validator { ...@@ -29,7 +29,7 @@ class Validator {
* @param mixed $target * @param mixed $target
* @return void * @return void
*/ */
public function __construct($target) public function __construct($target = array())
{ {
// --------------------------------------------------------- // ---------------------------------------------------------
// If the source is an Eloquent model, use the model's // If the source is an Eloquent model, use the model's
...@@ -44,7 +44,7 @@ class Validator { ...@@ -44,7 +44,7 @@ class Validator {
* @param mixed $target * @param mixed $target
* @return Validator * @return Validator
*/ */
public static function of($target) public static function make($target = array())
{ {
return new static($target); return new static($target);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment