Sulu\Component\Webspace\Manager\WebspaceCollection::getWebspace PHP Method

getWebspace() public method

Returns the webspace with the given key.
public getWebspace ( $key ) : Webspace
$key string The key of the webspace
return Sulu\Component\Webspace\Webspace
    public function getWebspace($key)
    {
        return array_key_exists($key, $this->webspaces) ? $this->webspaces[$key] : null;
    }