/**
  * Add a new namespace to the loader.
  *
  * @param string $namespace
  * @param string $hint
  *
  * @return void
  */
 public function addNamespace($namespace, $hint)
 {
     $this->hints[$namespace] = $hint;
     $this->fileLoader->addNamespace($namespace, $hint);
 }
Beispiel #2
0
 /**
  * Add a new namespace to the loader.
  *
  * @param  string $namespace
  * @param  string $hint
  * @return void
  */
 public function addNamespace($namespace, $hint)
 {
     return $this->fileLoader->addNamespace($namespace, $hint);
 }