@@ -24,7 +24,7 @@ |
||
| 24 | 24 | mayHaveAsArray as public getMessages; |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - public function getIsResidential() |
|
| 27 | + public function getIsResidential () |
|
| 28 | 28 | { |
| 29 | 29 | $is_residential = $this->attributes->mayHave('is_residential')->value(); |
| 30 | 30 | if ($is_residential === null) { |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @param Address[] $entities |
| 9 | 9 | */ |
| 10 | - public function __construct(array $entities) |
|
| 10 | + public function __construct (array $entities) |
|
| 11 | 11 | { |
| 12 | 12 | parent::__construct($entities); |
| 13 | 13 | } |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @param Address[] $entities |
| 9 | 9 | */ |
| 10 | - public function __construct(array $entities) |
|
| 10 | + public function __construct (array $entities) |
|
| 11 | 11 | { |
| 12 | 12 | parent::__construct($entities); |
| 13 | 13 | } |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @param Address[] $entities |
| 9 | 9 | */ |
| 10 | - public function __construct(array $entities) |
|
| 10 | + public function __construct (array $entities) |
|
| 11 | 11 | { |
| 12 | 12 | parent::__construct($entities); |
| 13 | 13 | } |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @param Address[] $entities |
| 9 | 9 | */ |
| 10 | - public function __construct(array $entities) |
|
| 10 | + public function __construct (array $entities) |
|
| 11 | 11 | { |
| 12 | 12 | parent::__construct($entities); |
| 13 | 13 | } |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @param Address[] $entities |
| 9 | 9 | */ |
| 10 | - public function __construct(array $entities) |
|
| 10 | + public function __construct (array $entities) |
|
| 11 | 11 | { |
| 12 | 12 | parent::__construct($entities); |
| 13 | 13 | } |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @param Address[] $entities |
| 9 | 9 | */ |
| 10 | - public function __construct(array $entities) |
|
| 10 | + public function __construct (array $entities) |
|
| 11 | 11 | { |
| 12 | 12 | parent::__construct($entities); |
| 13 | 13 | } |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @param Address[] $entities |
| 9 | 9 | */ |
| 10 | - public function __construct(array $entities) |
|
| 10 | + public function __construct (array $entities) |
|
| 11 | 11 | { |
| 12 | 12 | parent::__construct($entities); |
| 13 | 13 | } |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | |
| 8 | 8 | class CreateObjectByNested extends CreateObject |
| 9 | 9 | { |
| 10 | - public function getAddressFrom() |
|
| 10 | + public function getAddressFrom () |
|
| 11 | 11 | { |
| 12 | 12 | $addressFrom = $this->attributes->mustHave('address_from')->asArray(); |
| 13 | 13 | $addressFromObj = new AddressCreate($addressFrom); |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | return $addressFromObj->toArray(); |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | - public function getAddressTo() |
|
| 18 | + public function getAddressTo () |
|
| 19 | 19 | { |
| 20 | 20 | $addressTo = $this->attributes->mustHave('address_to')->asArray(); |
| 21 | 21 | $addressToObj = new AddressCreate($addressTo); |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | return $addressToObj->toArray(); |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - public function getParcel() |
|
| 26 | + public function getParcel () |
|
| 27 | 27 | { |
| 28 | 28 | $parcel = $this->attributes->mustHave('parcel')->asArray(); |
| 29 | 29 | $parcelObj = new ParcelCreate($parcel); |