You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.
In Zend_Application the registerNameSpace is called from the setAutoloaderNamespaces Method.
public function setAutoloaderNamespaces(array $namespaces)
{
$autoloader = $this->getAutoloader();
foreach ($namespaces as $namespace) {
$autoloader->registerNamespace($namespace);
}
return $this;
}
The autoloader ( Zend\Loader\StandardAutoloader ) is expecting an extra directory argument.
/**
* Register a namespace/directory pair
*
* @param string $namespace
* @param string $directory
* @return StandardAutoloader
*/
public function registerNamespace($namespace, $directory)
The text was updated successfully, but these errors were encountered:
In Zend_Application the registerNameSpace is called from the setAutoloaderNamespaces Method.
The autoloader ( Zend\Loader\StandardAutoloader ) is expecting an extra directory argument.
/**
* Register a namespace/directory pair
*
* @param string $namespace
* @param string $directory
* @return StandardAutoloader
*/
public function registerNamespace($namespace, $directory)
The text was updated successfully, but these errors were encountered: