PHP Fever Framework News
Important Autoloading Update!
Added February 27, 2010 by Will FitchWe've just released a patch that fixes an issue with not autoloading namespaces based on modules and applications. For example, if the path to your module is /my/app/module and you had a model in the models directory called Users.php, the autoload would not pick that up:
MySite/Models/Users.php
- <?php
- namespace MySite\Models;
- class Users {}
Prior to today's release, \MySite\Models\* would not autoload.
Please visit http://www.phpfever.com/downloads to update your library.