芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/portal.pulsehost.co.uk/vendor/bitpay/php-client/src/Bitpay/User.php
phone; } /** * @param string $phone * @return User */ public function setPhone($phone) { if (!empty($phone) && is_string($phone) && ctype_print($phone)) { $this->phone = trim($phone); } return $this; } /** * @inheritdoc */ public function getEmail() { return $this->email; } /** * @param string $email * @return User */ public function setEmail($email) { if (!empty($email) && is_string($email) && ctype_print($email)) { $this->email = trim($email); } return $this; } /** * @inheritdoc */ public function getFirstName() { return $this->firstName; } /** * @param string $firstName * @return User */ public function setFirstName($firstName) { if (!empty($firstName) && is_string($firstName) && ctype_print($firstName)) { $this->firstName = trim($firstName); } return $this; } /** * @inheritdoc */ public function getLastName() { return $this->lastName; } /** * @param string $lastName * @return User */ public function setLastName($lastName) { if (!empty($lastName) && is_string($lastName) && ctype_print($lastName)) { $this->lastName = trim($lastName); } return $this; } /** * @inheritdoc */ public function getAddress() { return $this->address; } /** * @param array $address * @return User */ public function setAddress(array $address) { if (!empty($address) && is_array($address)) { $this->address = $address; } return $this; } /** * @inheritdoc */ public function getCity() { return $this->city; } /** * @param string $city * @return User */ public function setCity($city) { if (!empty($city) && is_string($city) && ctype_print($city)) { $this->city = trim($city); } return $this; } /** * @inheritdoc */ public function getState() { return $this->state; } /** * @param string $state * @return User */ public function setState($state) { if (!empty($state) && is_string($state) && ctype_print($state)) { $this->state = trim($state); } return $this; } /** * @inheritdoc */ public function getZip() { return $this->zip; } /** * @param string $zip * @return User */ public function setZip($zip) { if (!empty($zip) && is_string($zip) && ctype_print($zip)) { $this->zip = trim($zip); } return $this; } /** * @inheritdoc */ public function getCountry() { return $this->country; } /** * @param string $country * @return User */ public function setCountry($country) { if (!empty($country) && is_string($country) && ctype_print($country)) { $this->country = trim($country); } return $this; } /** * @param bool $boolvalue * @return User */ public function setAgreedToTOSandPP($boolvalue) { if (!empty($boolvalue)) { $this->agreedToTOSandPP = $boolvalue; } return $this; } /** * @return bool */ public function getAgreedToTOSandPP() { return $this->agreedToTOSandPP; } }