AppserverIo\Appserver\Naming\NamingDirectory::bindReference PHP Метод

bindReference() публичный Метод

Binds a reference with the passed name to the naming directory.
См. также: AppserverIo\Appserver\Naming\NamingDirectory::bind()
public bindReference ( string $name, string $reference ) : void
$name string The name to bind the reference with
$reference string The name of the reference
Результат void
    public function bindReference($name, $reference)
    {
        $this->bindCallback($name, array(&$this, 'search'), array($reference, array()));
    }