Exemplo n.º 1
0
 function __construct(FullCustomer $customer = null)
 {
     parent::__construct();
     $this->password = '';
     if ($customer) {
         $this->setCustomer($customer);
     }
 }
Exemplo n.º 2
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->username = sprintf("Staff_%s", uniqid());
 }