AppserverIo\Appserver\Naming\NamingDirectory::appendDirectory PHP Method

appendDirectory() public method

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
return string The new path, with the name appended
    public function appendDirectory($name)
    {
        return $this->directory .= sprintf('/%s', $name);
    }