I create project with using invo-master.
I have get parameter https://training/user/history?month=02&year=2018
What wil here $publicResources = [ 'index' => ['index','stop'], 'errors' => ['show401', 'show404', 'show500'], 'session' => ['index', 'register', 'start', 'end'], 'user/' => ['index','archives','history'], ];
public function historyAction($month,$year){ var_dump($month); // return me NULL - how me get 02 var_dump($year); // return me NULL - how me get 2018 die; }
How get $month = 02 and $year = 2018