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 ContentTypeField
{
use HydratorTrait;
/** @var string */
private $name;
private $description;
private $type;
/** @var bool */
private $isLocalized;
private $isRequired;
/**
* @return string
*/
public function getName(): string
return $this->name;
}
public function getDescription(): string
return $this->description;
public function getType(): string
return $this->type;
* @return bool
public function isLocalized(): bool
return $this->isLocalized;
public function isRequired(): bool
return $this->isRequired;