I type this:
use com\database\DatabaseHandler
it shows this:
use comdatabaseDatabaseHandler
wtf
apparently single quoting the namespace fixes it
use 'com\database\DatabaseHandler';
is fine.
however you can't double quote namespaces because the backslashes can cause interpretation errors.
Automatically closed -- issue fixed for 2 weeks with no activity.
Comments
Comment #1
danielb commentedapparently single quoting the namespace fixes it
use 'com\database\DatabaseHandler';
is fine.
however you can't double quote namespaces because the backslashes can cause interpretation errors.
Comment #2
danielb commented