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

        $this->rules = new ArrayCollection();
        $this->createdAt = new \DateTime();
    }
Esempio n. 3
0
 /**
  * {@inheritdoc}
  */
 public function setFallbackLocale($fallbackLocale)
 {
     if (null !== $this->root) {
         $this->root->setFallbackLocale($fallbackLocale);
     }
     return parent::setFallbackLocale($fallbackLocale);
 }
Esempio n. 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();
 }
Esempio n. 5
0
 public function __construct()
 {
     parent::__construct();
     $this->createdAt = new \DateTime();
 }
Esempio n. 6
0
 public function __construct()
 {
     parent::__construct();
     $this->children = new ArrayCollection();
 }
Esempio n. 7
0
 /**
  * {@inheritdoc}
  */
 public function addTranslation(TranslationInterface $translation)
 {
     parent::addTranslation($translation);
     if ($translation instanceof TaxonomyTranslation) {
         $this->root->setName($translation->getName());
     }
 }
Esempio n. 8
0
 public function __construct()
 {
     parent::__construct();
     $this->provinces = new ArrayCollection();
 }