- Procedural Code over Object Orientation
- No one needs OO to develop web applications
- Explicitly load what you need over autoloaders
- Autoloaders are complex, we need manual control. Use
require
.
- One PHP file per URL
- The web server IS the front controller. That's how the architecture is supposed to work.
- PHP cannot do MVC.