* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\Ps_metrics\Environment; class AnalyticsEnv extends Env { /** * Url service analytics (prod and test) * * @var string */ private $serviceUrl; /** * AnalyticsEnv constructor. * * @return void */ public function __construct() { parent::__construct(); $this->setServiceUrl($_ENV['ANALYTICS_API']); } /** * getServiceUrl * * @return string */ public function getServiceUrl() { return $this->serviceUrl; } /** * setter for serviceUrl * * @param string $url * * @return void */ private function setServiceUrl($url) { $this->serviceUrl = $url; } }