public function ClassLoader::setNamespaceSeparator in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/lib/Doctrine/Common/ClassLoader.php \Doctrine\Common\ClassLoader::setNamespaceSeparator()
Sets the namespace separator used by classes in the namespace of this ClassLoader.
Parameters
string $sep The separator to use.:
Return value
void
File
- vendor/
doctrine/ common/ lib/ Doctrine/ Common/ ClassLoader.php, line 90
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 setNamespaceSeparator($sep) {
$this->namespaceSeparator = $sep;
}