Completed
Push — develop ( 321e68...dce9ea )
by Carsten
09:20
created
module/Core/src/Core/EventManager/EventManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@
 block discarded – undo
60 60
      *
61 61
      * If no event instance is passed, it creates one prior to triggering.
62 62
      *
63
-     * @param EventInterface|string $eventName
64
-     * @param object|string|null $target
63
+     * @param EventInterface $eventName
64
+     * @param \Core\Controller\AdminController $target
65 65
      * @param array $argv
66 66
      *
67 67
      * @return \Zend\EventManager\ResponseCollection
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/Service/RestClientFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     }
59 59
 
60 60
     /**
61
-     * @return mixed
61
+     * @return null|string
62 62
      */
63 63
     abstract protected function getUri();
64 64
 
Please login to merge, or discard this patch.
module/Core/src/Core/I18n/LocaleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @param  string             $requestedName
32 32
      * @param  null|array         $options
33 33
      *
34
-     * @return object
34
+     * @return Locale
35 35
      * @throws ServiceNotFoundException if unable to resolve the service.
36 36
      * @throws ServiceNotCreatedException if an exception is raised when
37 37
      *     creating a service.
Please login to merge, or discard this patch.
module/Core/src/Core/Mail/MailServiceConfig.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@  discard block
 block discarded – undo
16 16
 
17 17
 class MailServiceConfig extends Config
18 18
 {
19
+    /**
20
+     * @return \Zend\Mail\Transport\TransportInterface
21
+     */
19 22
     public function getTransport()
20 23
     {
21 24
         return isset($this->config['transport'])
@@ -40,6 +43,9 @@  discard block
 block discarded – undo
40 43
         return null;
41 44
     }
42 45
 
46
+    /**
47
+     * @return string
48
+     */
43 49
     public function getMailer()
44 50
     {
45 51
         return isset($this->data['mailer'])
Please login to merge, or discard this patch.
module/Core/src/Core/Paginator/PaginatorFactoryAbstract.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,6 @@
 block discarded – undo
41 41
     }
42 42
 	
43 43
 	/**
44
-     * @param ContainerInterface $serviceLocator
45 44
      * @return mixed|Paginator
46 45
      */
47 46
     public function createService(ContainerInterface $container)
Please login to merge, or discard this patch.
module/Core/src/Core/View/Helper/Services.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,6 @@
 block discarded – undo
86 86
     }
87 87
     
88 88
     /**
89
-     * @param HelperPluginManager $helperPluginManager
90 89
      * @return Services
91 90
      */
92 91
     public static function factory($sm)
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Repository/Job.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     /**
80 80
      * Look for an drafted Document of a given user
81 81
      *
82
-     * @param $user
82
+     * @param \Auth\Entity\User $user
83 83
      * @return \Jobs\Entity\Job|null
84 84
      */
85 85
     public function findDraft($user)
Please login to merge, or discard this patch.
module/Auth/src/Auth/Entity/InfoInterface.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
      * Sets the Day of the date of birth.
24 24
      *
25 25
      * @param string $birthDay
26
+     * @return Info
26 27
      */
27 28
     public function setBirthDay($birthDay);
28 29
     
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
      * Sets the month of the date of birth.
38 39
      *
39 40
      * @param string $birthMonth
41
+     * @return Info
40 42
      */
41 43
     public function setBirthMonth($birthMonth);
42 44
     
@@ -51,6 +53,7 @@  discard block
 block discarded – undo
51 53
      * Sets the year of the date of birth.
52 54
      *
53 55
      * @param string $email
56
+     * @return Info
54 57
      */
55 58
     public function setBirthYear($email);
56 59
     
@@ -65,6 +68,7 @@  discard block
 block discarded – undo
65 68
      * Sets the email.
66 69
      *
67 70
      * @param string $email
71
+     * @return Info
68 72
      */
69 73
     public function setEmail($email);
70 74
     
@@ -90,6 +94,7 @@  discard block
 block discarded – undo
90 94
      * Sets the first name
91 95
      *
92 96
      * @param string $name
97
+     * @return Info
93 98
      */
94 99
     public function setFirstName($name);
95 100
     
@@ -104,6 +109,7 @@  discard block
 block discarded – undo
104 109
      * Sets the gender
105 110
      *
106 111
      * @param string $gender
112
+     * @return Info
107 113
      */
108 114
     public function setGender($gender);
109 115
     
@@ -119,6 +125,7 @@  discard block
 block discarded – undo
119 125
      * Sets the last name
120 126
      *
121 127
      * @param string $name
128
+     * @return Info
122 129
      */
123 130
     public function setLastName($name);
124 131
     
@@ -133,6 +140,7 @@  discard block
 block discarded – undo
133 140
      * Sets the profile Image of an user
134 141
      *
135 142
      * @param EntityInterface $image
143
+     * @return Info
136 144
      */
137 145
     public function setImage(EntityInterface $image = null);
138 146
     
@@ -147,6 +155,7 @@  discard block
 block discarded – undo
147 155
      * Sets the users street
148 156
      *
149 157
      * @param string $name
158
+     * @return Info
150 159
      */
151 160
     public function setStreet($name);
152 161
     
@@ -161,6 +170,7 @@  discard block
 block discarded – undo
161 170
      * Sets the users house number
162 171
      *
163 172
      * @param string $houseNumber
173
+     * @return Info
164 174
      */
165 175
     public function setHouseNumber($houseNumber);
166 176
     
@@ -186,6 +196,7 @@  discard block
 block discarded – undo
186 196
      *
187 197
      * @param string $postalCode
188 198
      * @since 0.20
199
+     * @return Info
189 200
      */
190 201
     public function setPostalCode($postalCode);
191 202
 
@@ -202,6 +213,7 @@  discard block
 block discarded – undo
202 213
      *
203 214
      * @param string $phone
204 215
      * @since 0.20
216
+     * @return Info
205 217
      */
206 218
     public function setPhone($phone);
207 219
 
@@ -218,6 +230,7 @@  discard block
 block discarded – undo
218 230
      *
219 231
      * @param string $city
220 232
      * @since 0.20
233
+     * @return Info
221 234
      */
222 235
     public function setCity($city);
223 236
 
@@ -234,6 +247,7 @@  discard block
 block discarded – undo
234 247
      *
235 248
      * @param string $country
236 249
      * @since 0.30
250
+     * @return Info
237 251
      */
238 252
     public function setCountry($country);
239 253
 
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/SnapshotTrait.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -77,6 +77,9 @@  discard block
 block discarded – undo
77 77
         return $return === $entity ? $this : $return;
78 78
     }
79 79
 
80
+    /**
81
+     * @param string $method
82
+     */
80 83
     protected function proxyClone($method, ...$args)
81 84
     {
82 85
         $value = $this->proxy($method, ...$args);
@@ -85,6 +88,9 @@  discard block
 block discarded – undo
85 88
         return $return;
86 89
     }
87 90
 
91
+    /**
92
+     * @param string $property
93
+     */
88 94
     protected function inaccessible($property)
89 95
     {
90 96
         throw new \DomainException(sprintf(
@@ -93,6 +99,9 @@  discard block
 block discarded – undo
93 99
         ));
94 100
     }
95 101
 
102
+    /**
103
+     * @param string $property
104
+     */
96 105
     protected function immutable($property)
97 106
     {
98 107
         throw new ImmutablePropertyException($property, $this);
Please login to merge, or discard this patch.