Fix order of validation rules.

This commit is contained in:
Taylor Otwell 2015-05-21 08:14:40 -05:00
parent 41472b79db
commit 9446685da9
1 changed files with 1 additions and 1 deletions

View File

@ -70,9 +70,9 @@
"string" => "The :attribute must be :size characters.", "string" => "The :attribute must be :size characters.",
"array" => "The :attribute must contain :size items.", "array" => "The :attribute must contain :size items.",
], ],
"timezone" => "The :attribute must be a valid zone.",
"unique" => "The :attribute has already been taken.", "unique" => "The :attribute has already been taken.",
"url" => "The :attribute format is invalid.", "url" => "The :attribute format is invalid.",
"timezone" => "The :attribute must be a valid zone.",
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------