. */ /* */ /*************************************************************************************/ namespace ColissimoPickupPoint\WebService; use ColissimoPickupPoint\ColissimoPickupPoint; /** * Class BaseColissimoPickupPointWebService * @package ColissimoPickupPoint\WebService * @author Thelia * * @method BaseColissimoPickupPointWebService getAccountNumber() * @method BaseColissimoPickupPointWebService setAccountNumber($value) * @method BaseColissimoPickupPointWebService getPassword() * @method BaseColissimoPickupPointWebService setPassword($value) * @method BaseColissimoPickupPointWebService getWeight() * @method BaseColissimoPickupPointWebService setWeight($value) */ abstract class BaseColissimoPickupPointWebService extends BaseWebService { protected $account_number=null; protected $password=null; protected $filter_relay=null; /** @var string Weight in grammes !*/ protected $weight=null; public function __construct($function) { $url = ColissimoPickupPoint::getConfigValue(ColissimoPickupPoint::COLISSIMO_ENDPOINT); parent::__construct($url, $function); } }