Is there a solution to having to include all classes individually under a namespace?
My Laravel files are getting huge because I have to keep including a heck load of namespaces... It's pretty awful!
As a temporary solution, why might the following not be working:
namespace.Blah.txt:
use Blah\Blah;
use Blah\Bloh;
php code:
eval( file_get_contents( "namespace.Blah.txt" );
If I could get this to work, I could evaluate the contents of a file... I do understand it's a bit noob... but... dammit!
eval()is not working?