Flarum\Api\Serializer\ForumSerializer::getLogoUrl PHP Method

getLogoUrl() protected method

protected getLogoUrl ( ) : null | string
return null | string
    protected function getLogoUrl()
    {
        $logoPath = $this->settings->get('logo_path');
        return $logoPath ? $this->url->toPath('assets/' . $logoPath) : null;
    }