App\Controllers\Admin\ModuleGenerator::index PHP Method

index() public method

public index ( $req, $res )
    public function index($req, $res)
    {
        $this->controllerName = $req->getAttribute('route')->getName();
        $this->resourse = false;
        $this->initRoute($req, $res);
        $this->data['h1'] = 'Module Generator';
        $this->view->render($res, 'admin\\moduleGenerator.twig', $this->data);
    }
ModuleGenerator