Browse Source

Composers should not be loaded every time a new view is created.

Taylor Otwell 13 years ago
parent
commit
5b7a462131
1 changed files with 2 additions and 0 deletions
  1. 2 0
      laravel/view.php

+ 2 - 0
laravel/view.php

@@ -183,6 +183,8 @@ class View {
 	 */
 	protected static function composers()
 	{
+		if ( ! is_null(static::$composers)) return;
+
 		static::$composers = require APP_PATH.'composers'.EXT;
 	}