Browse Source

cast the error messages to an array.

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

+ 1 - 1
laravel/messages.php

@@ -18,7 +18,7 @@ class Messages {
 	 */
 	public function __construct($messages = array())
 	{
-		$this->messages = $messages;
+		$this->messages = (array) $messages;
 	}
 
 	/**