$config */ public function __construct(array $config) { $this->host = rtrim($config['host'], '/'); } public function wrap(string $audioURL, Episode $episode): string { // remove scheme from audioURI if https $audioURIWithoutHTTPS = preg_replace('(^https://)', '', $audioURL); return $this->host . '/e,pg=' . $episode->podcast->guid . '/' . $audioURIWithoutHTTPS; } }