__construct() public method

public __construct ( $customerId = null, $currencyCode = null, $dateTimeZone = null, $descriptiveName = null, $companyName = null, $canManageClients = null, $testAccount = null, $autoTaggingEnabled = null, $trackingUrlTemplate = null, $conversionTrackingSettings = null, $remarketingSettings = null )
Example #1
0
 function __construct($id)
 {
     parent::__construct($id);
 }
 /**
  * Initialise Gold customer object from base Customer class object
  * @param string $id Customer Id
  */
 public function __construct($id)
 {
     // Define customer type - Gold
     $this->type = self::CUSTOMER_TYPE;
     // Parent initialisation
     parent::__construct($id);
 }
 /**
  * @param string $name
  */
 function __construct($name)
 {
     parent::__construct($name, 0.25);
 }