Is there a solution to include all classes separately in the namespace?
My Laravel files are getting huge because I have to continue to include loading namespaces ... It's pretty awful!
As a workaround, why not work:
namespace.Blah.txt:
use Blah\Blah; use Blah\Bloh;
php code:
eval( file_get_contents( "namespace.Blah.txt" );
If I could make it work, I could appreciate the contents of the file ... I understand its a bit noob ... but ... damn it!
source share