|
|
@@ -92,63 +92,6 @@ class Member extends AbstractEntity
|
|
|
*/
|
|
|
protected $image = '';
|
|
|
|
|
|
- /**
|
|
|
- * addressCity
|
|
|
- *
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $addressCity = '';
|
|
|
-
|
|
|
- /**
|
|
|
- * streetAddress
|
|
|
- *
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $streetAddress = '';
|
|
|
-
|
|
|
- /**
|
|
|
- * streetAddressSecond
|
|
|
- *
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $streetAddressSecond = '';
|
|
|
-
|
|
|
- /**
|
|
|
- * streetAddressThird
|
|
|
- *
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $streetAddressThird = '';
|
|
|
-
|
|
|
- /**
|
|
|
- * postalCode
|
|
|
- *
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $postalCode = '';
|
|
|
-
|
|
|
- /**
|
|
|
- * telphone
|
|
|
- *
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $telphone = '';
|
|
|
-
|
|
|
- /**
|
|
|
- * mobilPhone
|
|
|
- *
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $mobilPhone = '';
|
|
|
-
|
|
|
- /**
|
|
|
- * email
|
|
|
- *
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $email = '';
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* @return int
|
|
|
*/
|
|
|
@@ -341,134 +284,6 @@ class Member extends AbstractEntity
|
|
|
$this->image = $image;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getAddressCity(): ?string
|
|
|
- {
|
|
|
- return $this->addressCity;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param string|null $addressCity
|
|
|
- */
|
|
|
- public function setAddressCity(?string $addressCity)
|
|
|
- {
|
|
|
- $this->addressCity = $addressCity;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getStreetAddress(): ?string
|
|
|
- {
|
|
|
- return $this->streetAddress;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param string|null $streetAddress
|
|
|
- */
|
|
|
- public function setStreetAddress(?string $streetAddress)
|
|
|
- {
|
|
|
- $this->streetAddress = $streetAddress;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getStreetAddressSecond(): ?string
|
|
|
- {
|
|
|
- return $this->streetAddressSecond;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param string|null $streetAddressSecond
|
|
|
- */
|
|
|
- public function setStreetAddressSecond(?string $streetAddressSecond)
|
|
|
- {
|
|
|
- $this->streetAddressSecond = $streetAddressSecond;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getStreetAddressThird(): ?string
|
|
|
- {
|
|
|
- return $this->streetAddressThird;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param string|null $streetAddressThird
|
|
|
- */
|
|
|
- public function setStreetAddressThird(?string $streetAddressThird)
|
|
|
- {
|
|
|
- $this->streetAddressThird = $streetAddressThird;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getPostalCode(): ?string
|
|
|
- {
|
|
|
- return $this->postalCode;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param string|null $postalCode
|
|
|
- */
|
|
|
- public function setPostalCode(?string $postalCode)
|
|
|
- {
|
|
|
- $this->postalCode = $postalCode;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getTelphone(): ?string
|
|
|
- {
|
|
|
- return $this->telphone;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param string|null $telphone
|
|
|
- */
|
|
|
- public function setTelphone(?string $telphone)
|
|
|
- {
|
|
|
- $this->telphone = $telphone;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getMobilPhone(): ?string
|
|
|
- {
|
|
|
- return $this->mobilPhone;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param string|null $mobilPhone
|
|
|
- */
|
|
|
- public function setMobilPhone(?string $mobilPhone)
|
|
|
- {
|
|
|
- $this->mobilPhone = $mobilPhone;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getEmail(): ?string
|
|
|
- {
|
|
|
- return $this->email;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param string|null $email
|
|
|
- */
|
|
|
- public function setEmail(?string $email)
|
|
|
- {
|
|
|
- $this->email = $email;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Return a full name for the member
|
|
|
*
|