Browse Source

change controller->filters to protected.

Taylor Otwell 13 years ago
parent
commit
c4eb6c9416
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/routing/controller.php

+ 1 - 1
laravel/routing/controller.php

@@ -131,7 +131,7 @@ abstract class Controller {
 	 * @param  string  $name
 	 * @return array
 	 */
-	public function filters($name)
+	protected function filters($name)
 	{
 		return (array) $this->$name;
 	}