Completed
Push — _tmp_357c6fa0d3d23ad00a80fe809... ( 357c6f )
by Kamil
519:16 queued 514:07
created
Model/AddressInterface.php 1 patch
Doc Comments   +63 added lines patch added patch discarded remove patch
@@ -18,45 +18,108 @@
 block discarded – undo
18 18
 
19 19
 interface AddressInterface extends TimestampableInterface, ResourceInterface
20 20
 {
21
+    /**
22
+     * @return string|null
23
+     */
21 24
     public function getFirstName(): ?string;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function setFirstName(?string $firstName): void;
24 30
 
31
+    /**
32
+     * @return string|null
33
+     */
25 34
     public function getLastName(): ?string;
26 35
 
36
+    /**
37
+     * @return void
38
+     */
27 39
     public function setLastName(?string $lastName): void;
28 40
 
41
+    /**
42
+     * @return string
43
+     */
29 44
     public function getFullName(): ?string;
30 45
 
46
+    /**
47
+     * @return string|null
48
+     */
31 49
     public function getPhoneNumber(): ?string;
32 50
 
51
+    /**
52
+     * @return void
53
+     */
33 54
     public function setPhoneNumber(?string $phoneNumber): void;
34 55
 
56
+    /**
57
+     * @return string|null
58
+     */
35 59
     public function getCompany(): ?string;
36 60
 
61
+    /**
62
+     * @return void
63
+     */
37 64
     public function setCompany(?string $company): void;
38 65
 
66
+    /**
67
+     * @return string|null
68
+     */
39 69
     public function getCountryCode(): ?string;
40 70
 
71
+    /**
72
+     * @return void
73
+     */
41 74
     public function setCountryCode(?string $countryCode): void;
42 75
 
76
+    /**
77
+     * @return string|null
78
+     */
43 79
     public function getProvinceCode(): ?string;
44 80
 
81
+    /**
82
+     * @return void
83
+     */
45 84
     public function setProvinceCode(?string $provinceCode): void;
46 85
 
86
+    /**
87
+     * @return string|null
88
+     */
47 89
     public function getProvinceName(): ?string;
48 90
 
91
+    /**
92
+     * @return void
93
+     */
49 94
     public function setProvinceName(?string $provinceName): void;
50 95
 
96
+    /**
97
+     * @return string|null
98
+     */
51 99
     public function getStreet(): ?string;
52 100
 
101
+    /**
102
+     * @return void
103
+     */
53 104
     public function setStreet(?string $street): void;
54 105
 
106
+    /**
107
+     * @return string|null
108
+     */
55 109
     public function getCity(): ?string;
56 110
 
111
+    /**
112
+     * @return void
113
+     */
57 114
     public function setCity(?string $city): void;
58 115
 
116
+    /**
117
+     * @return string|null
118
+     */
59 119
     public function getPostcode(): ?string;
60 120
 
121
+    /**
122
+     * @return void
123
+     */
61 124
     public function setPostcode(?string $postcode): void;
62 125
 }
Please login to merge, or discard this patch.
Model/CountryInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@  discard block
 block discarded – undo
20 20
 
21 21
 interface CountryInterface extends ToggleableInterface, ResourceInterface, CodeAwareInterface
22 22
 {
23
+    /**
24
+     * @return string|null
25
+     */
23 26
     public function getName(?string $locale = null): ?string;
24 27
 
25 28
     /**
@@ -29,8 +32,14 @@  discard block
 block discarded – undo
29 32
 
30 33
     public function hasProvinces(): bool;
31 34
 
35
+    /**
36
+     * @return void
37
+     */
32 38
     public function addProvince(ProvinceInterface $province): void;
33 39
 
40
+    /**
41
+     * @return void
42
+     */
34 43
     public function removeProvince(ProvinceInterface $province): void;
35 44
 
36 45
     public function hasProvince(ProvinceInterface $province): bool;
Please login to merge, or discard this patch.
Model/ProvinceInterface.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -18,15 +18,33 @@
 block discarded – undo
18 18
 
19 19
 interface ProvinceInterface extends ResourceInterface, CodeAwareInterface
20 20
 {
21
+    /**
22
+     * @return string|null
23
+     */
21 24
     public function getName(): ?string;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function setName(?string $name): void;
24 30
 
31
+    /**
32
+     * @return string|null
33
+     */
25 34
     public function getAbbreviation(): ?string;
26 35
 
36
+    /**
37
+     * @return void
38
+     */
27 39
     public function setAbbreviation(?string $abbreviation): void;
28 40
 
41
+    /**
42
+     * @return CountryInterface|null
43
+     */
29 44
     public function getCountry(): ?CountryInterface;
30 45
 
46
+    /**
47
+     * @return void
48
+     */
31 49
     public function setCountry(?CountryInterface $country): void;
32 50
 }
Please login to merge, or discard this patch.
Model/ZoneInterface.php 1 patch
Doc Comments   +26 added lines patch added patch discarded remove patch
@@ -28,16 +28,36 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public static function getTypes(): array;
30 30
 
31
+    /**
32
+     * @return string|null
33
+     */
31 34
     public function getName(): ?string;
32 35
 
36
+    /**
37
+     * @return void
38
+     */
33 39
     public function setName(?string $name): void;
34 40
 
41
+    /**
42
+     * @return string|null
43
+     */
35 44
     public function getType(): ?string;
36 45
 
46
+    /**
47
+     * @param string $type
48
+     *
49
+     * @return void
50
+     */
37 51
     public function setType(?string $type): void;
38 52
 
53
+    /**
54
+     * @return string|null
55
+     */
39 56
     public function getScope(): ?string;
40 57
 
58
+    /**
59
+     * @return void
60
+     */
41 61
     public function setScope(?string $scope): void;
42 62
 
43 63
     /**
@@ -47,8 +67,14 @@  discard block
 block discarded – undo
47 67
 
48 68
     public function hasMembers(): bool;
49 69
 
70
+    /**
71
+     * @return void
72
+     */
50 73
     public function addMember(ZoneMemberInterface $member): void;
51 74
 
75
+    /**
76
+     * @return void
77
+     */
52 78
     public function removeMember(ZoneMemberInterface $member): void;
53 79
 
54 80
     public function hasMember(ZoneMemberInterface $member): bool;
Please login to merge, or discard this patch.
Model/ZoneMemberInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -18,7 +18,15 @@
 block discarded – undo
18 18
 
19 19
 interface ZoneMemberInterface extends ResourceInterface, CodeAwareInterface
20 20
 {
21
+    /**
22
+     * @return ZoneInterface|null
23
+     */
21 24
     public function getBelongsTo(): ?ZoneInterface;
22 25
 
26
+    /**
27
+     * @param Zone|null $belongsTo
28
+     *
29
+     * @return void
30
+     */
23 31
     public function setBelongsTo(?ZoneInterface $belongsTo): void;
24 32
 }
Please login to merge, or discard this patch.