Hello,
This is probably a PHP question over F3, but.....
I have a config/routes.ini which has a line:
GET /date=DateController->index
In the config.ini
AUTOLOAD=app/controllers/|app/models/
In my app/controllers folder I have a file called DateController.php (and a Controller.php) with the class definition of:
<?php
class DateController extends Controller {
In this configuration, every thing works fine.
If I want to change the names of the files to please php-codesniffer PSR2 standard to class-*.php, it all goes 404.
I have tried changing a lot of changes, but none work. So I will ignore the errors till I either I get an answer here or something.
Thanks for listening.