| 1 | <?php |
||
| 8 | class Factory |
||
| 9 | { |
||
| 10 | private $patterns; |
||
| 11 | private $controllerNames; |
||
| 12 | private $routes; |
||
| 13 | private $viewNames; |
||
| 14 | |||
| 15 | public function __construct(Generator\Pattern $patterns = null, Generator\ControllerName $controllerNames = null, Generator\RouteName $routes = null, Generator\ViewName $viewNames = null) |
||
| 22 | |||
| 23 | public function create(Config $config) |
||
| 40 | } |
||
| 41 |