Exemple #1
0
 public function __construct()
 {
     $this->attributes = new ArrayCollection();
     $this->options = new ArrayCollection();
     $this->createdAt = new \DateTime();
     parent::__construct();
 }
Exemple #2
0
    public function __construct()
    {
        parent::__construct();

        $this->rules = new ArrayCollection();
        $this->createdAt = new \DateTime();
    }
Exemple #3
0
 /**
  * {@inheritdoc}
  */
 public function setFallbackLocale($fallbackLocale)
 {
     if (null !== $this->root) {
         $this->root->setFallbackLocale($fallbackLocale);
     }
     return parent::setFallbackLocale($fallbackLocale);
 }
Exemple #4
0
 public function __construct()
 {
     parent::__construct();
     $this->availableOn = new \DateTime();
     $this->attributes = new ArrayCollection();
     $this->variants = new ArrayCollection();
     $this->options = new ArrayCollection();
     $this->createdAt = new \DateTime();
 }
Exemple #5
0
 public function __construct()
 {
     parent::__construct();
     $this->createdAt = new \DateTime();
 }
Exemple #6
0
 public function __construct()
 {
     parent::__construct();
     $this->children = new ArrayCollection();
 }
Exemple #7
0
 /**
  * {@inheritdoc}
  */
 public function addTranslation(TranslationInterface $translation)
 {
     parent::addTranslation($translation);
     if ($translation instanceof TaxonomyTranslation) {
         $this->root->setName($translation->getName());
     }
 }
Exemple #8
0
 public function __construct()
 {
     parent::__construct();
     $this->provinces = new ArrayCollection();
 }