Example #1
0
File: User.php Project: eix/core
 public function __construct($data, $isNew = true)
 {
     // Make sure all users have their own ID.
     if (!@$data['id']) {
         $data['id'] = static::getNewUserId();
     }
     parent::__construct($data, $isNew);
     if (!$this->firstSeen) {
         $this->firstSeen = new \DateTime();
     }
     $this->lastSeen = new \DateTime();
 }