PHP Version 5
Author: Marcelo Gornstein (marcelog@gmail.com)
Inheritance: implements PAGI\Client\IClient
Exemplo n.º 1
0
 public function createNode($name)
 {
     if (!isset($this->nodes[$name])) {
         $this->_logger->warn("Unknown node: {$name}");
         return parent::createNode($name);
     }
     return $this->nodes[$name];
 }