for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SeamsCMS\Delivery\Model;
class Locale
{
use HydratorTrait;
/** @var string */
protected $name;
protected $locale;
/**
* @return string
*/
public function getName(): string
return $this->name;
}
public function getLocale(): string
return $this->locale;