コード例 #1
0
 /**
  *  Add a new namespace to the loader.
  *
  *  @param  string  $namespace
  *  @param  string  $hint
  *  @return void
  */
 public function addNamespace($namespace, $hint)
 {
     $this->fallback->addNamespace($namespace, $hint);
 }
コード例 #2
0
ファイル: MixedLoader.php プロジェクト: waavi/translation
 /**
  *  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->primaryLoader->addNamespace($namespace, $hint);
 }