|
|
|
|
|
by philsturgeon
5548 days ago
|
|
Fuel does not namespace everything as there is no need. There are 4 main namespaces. Fuel\Core
Fuel\App
Fuel\Tasks
Fuel\Migrations Then packages have their own namespace too. These help code that could potentially have the same name exists and allows for easy extending of core classes. Class Foo extends Fuel\Core\Foo. Thanks to a cascading file system very similar to Kohamas this is all very simPlenand very quick. The Zend_Style_Class equates to classes/Zend/style/class.php and could exist in core or app, or packages, etc. |
|