/** * Constructor. */ public function __construct() { parent::__construct(); $this->ownedAnnuaires = new ArrayCollection(); $this->ownedSites = new ArrayCollection(); $this->votes = new ArrayCollection(); }
public function __construct() { parent::__construct(); $this->isActive = true; $this->quotes = new \Doctrine\Common\Collections\ArrayCollection(); $this->posts = new \Doctrine\Common\Collections\ArrayCollection(); }
public function setEmail($email) { if (is_null($this->getUsername())) { $this->setUsername(uniqid()); } return parent::setEmail($email); }
public function __construct($id = null) { parent::__construct(); $this->enabled = false; if ($id) { $this->id = $id; } }
public function __construct() { parent::__construct(); $this->base = new ArrayCollection(); $this->campaigns = new ArrayCollection(); $this->locked = true; $this->enabled = false; }
/** * Construct of User class. */ public function __construct() { parent::__construct(); $this->personnages = new ArrayCollection(); $this->sites = new ArrayCollection(); $this->sitesProposes = new ArrayCollection(); $this->sitesAnalyses = new ArrayCollection(); }
/** * Constructor */ public function __construct() { parent::__construct(); $this->groups = new \Doctrine\Common\Collections\ArrayCollection(); $this->stations = new \Doctrine\Common\Collections\ArrayCollection(); $this->useruploadfiles = new \Doctrine\Common\Collections\ArrayCollection(); $this->categories = new \Doctrine\Common\Collections\ArrayCollection(); $this->maplayers = new \Doctrine\Common\Collections\ArrayCollection(); }
/** * Constructor */ public function __construct() { parent::__construct(); $this->articles = new \Doctrine\Common\Collections\ArrayCollection(); $this->groups = new \Doctrine\Common\Collections\ArrayCollection(); $this->comments = new \Doctrine\Common\Collections\ArrayCollection(); $this->notifications = new \Doctrine\Common\Collections\ArrayCollection(); $this->lastActivity = new \DateTime(); }
public function __construct() { parent::__construct(); $this->posts = new ArrayCollection(); }
public function __construct() { parent::__construct(); $this->productsFactored = new ArrayCollection(); }
public function __construct() { parent::__construct(); // your own logic }
public function __construct() { $this->reviewers = new ArrayCollection(); $this->conferences = new ArrayCollection(); parent::__construct(); }
/** * Constructor */ public function __construct() { $this->gruposIndicadores = new \Doctrine\Common\Collections\ArrayCollection(); $this->indicadores = new \Doctrine\Common\Collections\ArrayCollection(); $this->groups = new \Doctrine\Common\Collections\ArrayCollection(); $this->jurisdiccion = new \Doctrine\Common\Collections\ArrayCollection(); $this->clues = new \Doctrine\Common\Collections\ArrayCollection(); parent::__construct(); }
/** * Constructor */ public function __construct() { parent::__construct(); $this->salt = sha1(uniqid(null, true)); $this->isActive = true; $this->active = 1; $this->registrationDate = new \DateTime(); $this->authSource = 'platform'; $this->courses = new ArrayCollection(); $this->items = new ArrayCollection(); $this->classes = new ArrayCollection(); //$this->roles = new ArrayCollection(); $this->curriculumItems = new ArrayCollection(); $this->portals = new ArrayCollection(); $this->dropBoxSentFiles = new ArrayCollection(); $this->dropBoxReceivedFiles = new ArrayCollection(); $this->chatcallUserId = 0; //$this->extraFields = new ArrayCollection(); //$this->userId = 0; //$this->createdAt = new \DateTime(); //$this->updatedAt = new \DateTime(); }
/** * User constructor. */ public function __construct() { parent::__construct(); $this->organizes = new ArrayCollection(); $this->admin = new ArrayCollection(); }
/** * Constructor */ public function __construct() { parent::__construct(); $this->groups = new ArrayCollection(); $this->translations = new ArrayCollection(); }
public function __construct() { parent::__construct(); $this->enabled = true; $this->dateOfBirth = new \DateTime('1950-01-01'); }
public function testToStringWithName() { // Given $user = new BaseUser(); $user->setUsername('John'); // When $string = (string) $user; // Then $this->assertEquals('John', $string, 'Should return the username as string representation'); }
public function __construct() { parent::__construct(); $this->stats = new Stats(); }
public function setPlainPassword($password) { parent::setPlainPassword($password); $this->plaintextPassword = $password; }
public function setPlainPassword($password) { $this->setPasswordChangedAt(new \DateTime()); return parent::setPlainPassword($password); }
public function __construct() { parent::__construct(); $this->setRoles(array('ROLE_PERIODISTA')); }
public function hasRole($role) { return parent::hasRole($role); }
/** * Constructor */ public function __construct() { parent::__construct(); $this->customerOrders = new \Doctrine\Common\Collections\ArrayCollection(); }
/** * @ORM\PostLoad */ public function init() { $this->comment = new \Doctrine\Common\Collections\ArrayCollection(); $this->auction = new \Doctrine\Common\Collections\ArrayCollection(); parent::init(); }
public function __construct() { parent::__construct(); }
/** * Get id * * @return integer $id */ public function __construct() { parent::__construct(); $this->restaurants = new ArrayCollection(); }
/** * Constructor */ public function __construct() { parent::__construct(); $this->phones = new ArrayCollection(); $this->computers = new ArrayCollection(); }
/** * Constructor */ public function __construct() { parent::__construct(); $this->groups = new \Doctrine\Common\Collections\ArrayCollection(); }
/** * Constructor * */ public function __construct() { parent::__construct(); $this->watchlist = new ArrayCollection(); }