for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FH\Bundle\MultiSiteBundle\Site;
final class IdentifierConfig
{
/**
* @var array
*/
private $hostnames;
private $locales;
public function __construct(array $hostnames, array $locales)
$this->hostnames = $hostnames;
$this->locales = $locales;
}
public function getHostnames(): array
return $this->hostnames;
public function getLocales(): array
return $this->locales;