Newscoop\NewscoopBundle\Entity\TopicTranslation::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( string $locale, string $field, string $value, $isDefault = null )
$locale string
$field string
$value string
    public function __construct($locale, $field, $value, $isDefault = null)
    {
        $this->setLocale($locale);
        $this->setField($field);
        $this->setContent($value);
        $this->setIsDefault($isDefault);
    }