note 102604 deleted from language.namespaces.faq by danbrown

[email protected] Thu, 24 Feb 2011 07:03:57 -0800
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: mikhus 

----

Is it possible to import all the classes from a given namespace at a single use statement, like:

use MyNamespace\*;

?

If not - is it planned to add such feature in future? Because sometimes it's really bothering to write:

use MyNamespace\Class1;
use MyNamespace\Class2;
...
use MyNamespace\Class234;