<?phpnamespace App\Misc;use Symfony\Component\HttpFoundation\UrlHelper;class ImageUrlHelper{ public function __construct( UrlHelper $urlHelper ) { $this->urlHelper = $urlHelper; } public function getLogoUrl() { return $this->urlHelper->getAbsoluteUrl('/html/images/logo.png'); } public function getNewsImageUrl() { return $this->urlHelper->getAbsoluteUrl('/html/images/logo.png'); } public function getSchoolImageUrl() { return $this->urlHelper->getAbsoluteUrl('/html/images/logo.png'); }}