1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-15 01:24:25 +02:00

Flextype Box Plugin: Admin #125 #117

- Information Controller/Views implementation
This commit is contained in:
Awilum
2019-06-02 00:53:28 +03:00
parent df3aa1d99f
commit a7d5731831

View File

@@ -9,10 +9,10 @@ class InformationController extends Controller
private $view;
private $router;
public function __construct($view, $router)
public function __construct($container)
{
$this->view = $view;
$this->router = $router;
$this->view = $container->view;
$this->router = $container->router;
}
public function index($request, $response, $args)