| 1 | <?php  | 
            ||
| 5 | class Controller  | 
            ||
| 6 | { | 
            ||
| 7 | /**  | 
            ||
| 8 | * @var string  | 
            ||
| 9 | */  | 
            ||
| 10 | private $controller;  | 
            ||
| 11 | |||
| 12 | /**  | 
            ||
| 13 | * @param string $controller  | 
            ||
| 14 | */  | 
            ||
| 15 | public function __construct($controller)  | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * @return string  | 
            ||
| 22 | */  | 
            ||
| 23 | public function getController()  | 
            ||
| 27 | |||
| 28 | /**  | 
            ||
| 29 | * @return string  | 
            ||
| 30 | */  | 
            ||
| 31 | public function __toString()  | 
            ||
| 35 | }  |