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

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

Append's the passed name to the actual path and return's the new path.
public appendDirectory ( string $name ) : string
$name string The name to append to the path
Результат string The new path, with the name appended
    public function appendDirectory($name)
    {
        return $this->directory .= sprintf('/%s', $name);
    }