Browse Source

Remove comment bloat from View class.

Taylor Otwell 13 years ago
parent
commit
42cff59a7d
1 changed files with 4 additions and 15 deletions
  1. 4 15
      system/view.php

+ 4 - 15
system/view.php

@@ -57,9 +57,7 @@ class View {
 	{
 		static::$last = $this->view;
 
-		// -----------------------------------------------------
 		// Get the evaluated content of all of the sub-views.
-		// -----------------------------------------------------
 		foreach ($this->data as &$data)
 		{
 			if ($data instanceof View or $data instanceof Response)
@@ -68,27 +66,18 @@ class View {
 			}
 		}
 
-		// -----------------------------------------------------
 		// Extract the view data into the local scope.
-		// -----------------------------------------------------
 		extract($this->data, EXTR_SKIP);
 
-		// -----------------------------------------------------
-		// Start the output buffer so nothing escapes to the
-		// browser. The response will be sent later.
-		// -----------------------------------------------------
 		ob_start();
 
 		$path = $this->find();
 
-		// -----------------------------------------------------
-		// We include the view into the local scope within a
-		// try / catch block to catch any exceptions that may
-		// occur while the view is rendering.
+		// We include the view into the local scope within a try / catch to catch any
+		// exceptions that may occur while the view is rendering.
 		//
-		// Otherwise, a white screen of death will be shown
-		// if an exception occurs while rendering the view.
-		// -----------------------------------------------------
+		// Otherwise, a white screen of death will be shown if an exception occurs
+		// while rendering the view.
 		try
 		{
 			include $path;