Commit b6cbac56 authored by Daniel Petrie's avatar Daniel Petrie

bundle property wasn't being used, so I made use of it as well as adding the...

bundle property wasn't being used, so I made use of it as well as adding the controllers name and action being called.
parent 3a62036a
...@@ -26,6 +26,20 @@ abstract class Controller { ...@@ -26,6 +26,20 @@ abstract class Controller {
*/ */
public $bundle; public $bundle;
/**
* The controllers name
*
* @var string
*/
public $name;
/**
* The controllers action
*
* @var string
*/
public $action;
/** /**
* Indicates if the controller uses RESTful routing. * Indicates if the controller uses RESTful routing.
* *
...@@ -144,6 +158,10 @@ abstract class Controller { ...@@ -144,6 +158,10 @@ abstract class Controller {
$controller = static::resolve($bundle, $controller); $controller = static::resolve($bundle, $controller);
$controller->bundle = $bundle;
$controller->name = $controller_name;
$controller->action = $method;
// If the controller could not be resolved, we're out of options and // If the controller could not be resolved, we're out of options and
// will return the 404 error response. If we found the controller, // will return the 404 error response. If we found the controller,
// we can execute the requested method on the instance. // we can execute the requested method on the instance.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment