/home/techb158/immovalet.com/platform/packages/seo-helper/src/Entities
Edit: /home/techb158/immovalet.com/platform/packages/seo-helper/src/Entities/Analytics.php (1411B)
google = $code;
return $this;
}
/**
* Render the tag.
*
* @return string
*/
public function render()
{
return implode(PHP_EOL, array_filter([
$this->renderGoogleScript(),
]));
}
/**
* Render the tag.
*
* @return string
*/
public function __toString()
{
return $this->render();
}
/**
* Render the Google Analytics tracking script.
*
* @return string
*/
protected function renderGoogleScript()
{
if (empty($this->google)) {
return '';
}
return <<
EOT;
}
}