Browse Source

refactor messages class.

Taylor Otwell 13 years ago
parent
commit
af4403bac5
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/messages.php

+ 1 - 4
system/messages.php

@@ -70,10 +70,7 @@ class Messages {
 	 */
 	 */
 	public function get($key = null, $format = ':message')
 	public function get($key = null, $format = ':message')
 	{
 	{
-		if (is_null($key))
-		{
-			return $this->all($format);
-		}
+		if (is_null($key)) return $this->all($format);
 
 
 		return (array_key_exists($key, $this->messages)) ? $this->format($this->messages[$key], $format) : array();
 		return (array_key_exists($key, $this->messages)) ? $this->format($this->messages[$key], $format) : array();
 	}
 	}