Does anyone place files in subfolders to further categorize them and prevent clutter, such as:
Code:
/library/transferobject/
/library/transferobject/user.php
/library/transferobject/user/detailed.php
/library/transferobject/order.php
/library/transferobject/order/detailed.php
/library/mapper/user.php
/library/mapper/order.php
A large bulk of my scripts are transfer object type classes, but I don't prefix...
Code:
/library/transferobject/user.php
...or suffix them...
Code:
/library/user/transferobject.php
into defined directory structures.
This causes a lot of mixing between these classes and classes that actually perform "work", such as:
Code:
/library/user.php
/library/user/mapper.php
/library/order.php
/library/order/mapper.php
How do you deal with this type of clutter and organization when you get deeper into the folder structure?
Bookmarks