1
0
mirror of synced 2024-11-22 05:16:09 +03:00

deleted return types in setters CustomerBuilder class

This commit is contained in:
Sergey Chazov 2021-04-05 14:57:04 +03:00
parent 8e444e0880
commit de2b68c349

View File

@ -50,7 +50,7 @@ class CustomerAddress extends BaseModel
* @param string $index * @param string $index
* @return $this * @return $this
*/ */
public function setIndex(string $index): CustomerAddress public function setIndex(string $index)
{ {
$this->index = $index; $this->index = $index;
@ -61,7 +61,7 @@ class CustomerAddress extends BaseModel
* @param string $country * @param string $country
* @return $this * @return $this
*/ */
public function setCountry(string $country): CustomerAddress public function setCountry(string $country)
{ {
$this->country = $country; $this->country = $country;
@ -72,7 +72,7 @@ class CustomerAddress extends BaseModel
* @param string $region * @param string $region
* @return $this * @return $this
*/ */
public function setRegion(string $region): CustomerAddress public function setRegion(string $region)
{ {
$this->region = $region; $this->region = $region;
@ -83,7 +83,7 @@ class CustomerAddress extends BaseModel
* @param string $city * @param string $city
* @return $this * @return $this
*/ */
public function setCity(string $city): CustomerAddress public function setCity(string $city)
{ {
$this->city = $city; $this->city = $city;
@ -94,7 +94,7 @@ class CustomerAddress extends BaseModel
* @param string $street * @param string $street
* @return $this * @return $this
*/ */
public function setStreet(string $street): CustomerAddress public function setStreet(string $street)
{ {
$this->street = $street; $this->street = $street;
@ -105,7 +105,7 @@ class CustomerAddress extends BaseModel
* @param string $building * @param string $building
* @return $this * @return $this
*/ */
public function setBuilding(string $building): CustomerAddress public function setBuilding(string $building)
{ {
$this->building = $building; $this->building = $building;
@ -116,7 +116,7 @@ class CustomerAddress extends BaseModel
* @param string $house * @param string $house
* @return $this * @return $this
*/ */
public function setHouse(string $house): CustomerAddress public function setHouse(string $house)
{ {
$this->house = $house; $this->house = $house;
@ -127,7 +127,7 @@ class CustomerAddress extends BaseModel
* @param string $block * @param string $block
* @return $this * @return $this
*/ */
public function setBlock(string $block): CustomerAddress public function setBlock(string $block)
{ {
$this->block = $block; $this->block = $block;
@ -138,7 +138,7 @@ class CustomerAddress extends BaseModel
* @param string $flat * @param string $flat
* @return $this * @return $this
*/ */
public function setFlat(string $flat): CustomerAddress public function setFlat(string $flat)
{ {
$this->flat = $flat; $this->flat = $flat;
@ -149,7 +149,7 @@ class CustomerAddress extends BaseModel
* @param string $floor * @param string $floor
* @return $this * @return $this
*/ */
public function setFloor(string $floor): CustomerAddress public function setFloor(string $floor)
{ {
$this->floor = $floor; $this->floor = $floor;
@ -160,7 +160,7 @@ class CustomerAddress extends BaseModel
* @param string $intercomCode * @param string $intercomCode
* @return $this * @return $this
*/ */
public function setIntercomCode(string $intercomCode): CustomerAddress public function setIntercomCode(string $intercomCode)
{ {
$this->intercomCode = $intercomCode; $this->intercomCode = $intercomCode;
@ -171,7 +171,7 @@ class CustomerAddress extends BaseModel
* @param string $metro * @param string $metro
* @return $this * @return $this
*/ */
public function setMetro(string $metro): CustomerAddress public function setMetro(string $metro)
{ {
$this->metro = $metro; $this->metro = $metro;
@ -182,7 +182,7 @@ class CustomerAddress extends BaseModel
* @param string $notes * @param string $notes
* @return $this * @return $this
*/ */
public function setNotes(string $notes): CustomerAddress public function setNotes(string $notes)
{ {
$this->notes = $notes; $this->notes = $notes;
@ -193,7 +193,7 @@ class CustomerAddress extends BaseModel
* @param string $text * @param string $text
* @return $this * @return $this
*/ */
public function setText(string $text): CustomerAddress public function setText(string $text)
{ {
$this->text = $text; $this->text = $text;