public function ClassLoader::getNamespaceSeparator in Plug 7
Gets the namespace separator used by classes in the namespace of this ClassLoader.
Return value
string
File
- lib/
doctrine/ common/ lib/ Doctrine/ Common/ ClassLoader.php, line 100
Class
- ClassLoader
- A <tt>ClassLoader</tt> is an autoloader for class files that can be installed on the SPL autoload stack. It is a class loader that either loads only classes of a specific namespace or all namespaces and it is suitable for working…
Namespace
Doctrine\CommonCode
public function getNamespaceSeparator() {
return $this->namespaceSeparator;
}