Closed (fixed)
Project:
Code Filter
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
28 Oct 2009 at 04:41 UTC
Updated:
11 Nov 2009 at 05:10 UTC
I type this:
use com\database\DatabaseHandler
it shows this:
use comdatabaseDatabaseHandler
wtf
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