Browse Source

Reformatted return

Changed the return of the method in line with suggestions from @JoostK.
Alex Andrews 12 years ago
parent
commit
f02e7dc4ca
1 changed files with 2 additions and 4 deletions
  1. 2 4
      laravel/html.php

+ 2 - 4
laravel/html.php

@@ -420,10 +420,8 @@ class HTML {
 	 * @return string
 	 * @return string
 	 */
 	 */
 	protected static function encoding()
 	protected static function encoding()
-	{	
-		if(static::$encoding===null) static::$encoding = Config::get('application.encoding');
-
-		return static::$encoding;
+	{
+		return static::$encoding ?: static::$encoding = Config::get('application.encoding');
 	}
 	}
 
 
 	/**
 	/**