Completed
Push — develop ( 31c340...db8caa )
by Mathias
08:35
created
module/Auth/src/Auth/Service/Register.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @param $user
116
+     * @param \Core\Entity\EntityInterface $user
117 117
      * @return $this
118 118
      */
119 119
     protected function setUser($user)
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
     /**
206 206
      * Email-Address
207 207
      * @param $email string
208
-     * @return mixed
208
+     * @return Register
209 209
      */
210 210
     protected function setEmail($email)
211 211
     {
Please login to merge, or discard this patch.
module/Auth/src/Auth/View/Helper/BuildReferer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
     
24 24
     protected $filter;
25 25
     
26
+    /**
27
+     * @param StripQueryParamsFilter $filter
28
+     */
26 29
     public function setFilter($filter)
27 30
     {
28 31
         $this->filter = $filter;
Please login to merge, or discard this patch.
module/Auth/src/Auth/View/Helper/StripQueryParams.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@  discard block
 block discarded – undo
23 23
     
24 24
     protected $filter;
25 25
     
26
+    /**
27
+     * @param StripQueryParamsFilter $filter
28
+     */
26 29
     public function setFilter($filter)
27 30
     {
28 31
         $this->filter = $filter;
@@ -44,7 +47,6 @@  discard block
 block discarded – undo
44 47
      * Returns a property value of the authenticated user or null, if
45 48
      * no user is authenticated or the property does not exists.
46 49
      *
47
-     * @param string $property
48 50
      * @return \Auth\View\Helper\Auth|NULL
49 51
      */
50 52
     public function __invoke($uri, array $stripParams = null)
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/ConfigFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * Create the settings service
15 15
      *
16 16
      * @param  ServiceLocatorInterface $serviceLocator
17
-     * @return ControllerManager
17
+     * @return Config
18 18
      */
19 19
     public function createService(ServiceLocatorInterface $serviceLocator)
20 20
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/EntitySnapshot.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     }
79 79
 
80 80
     /**
81
-     * @return mixed
81
+     * @return RepositoryInterface
82 82
      */
83 83
     public function getRepositories()
84 84
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/ListQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
     }
126 126
     
127 127
     /**
128
-     * @return number $itemsPerPage
128
+     * @return integer $itemsPerPage
129 129
      */
130 130
     public function getItemsPerPage()
131 131
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/Mail.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     /**
32 32
      * Get the current controller instance
33 33
      *
34
-     * @return null|Dispatchable
34
+     * @return Dispatchable
35 35
      */
36 36
     public function getController()
37 37
     {
@@ -45,6 +45,9 @@  discard block
 block discarded – undo
45 45
         return $this;
46 46
     }
47 47
     
48
+    /**
49
+     * @param AddressList $header
50
+     */
48 51
     protected function stringFromMailHeader($header)
49 52
     {
50 53
         $erg = '';
@@ -133,6 +136,9 @@  discard block
 block discarded – undo
133 136
         }
134 137
     }
135 138
     
139
+    /**
140
+     * @return string
141
+     */
136 142
     protected function getTemplate()
137 143
     {
138 144
         $template = null;
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/Mailer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
         );
44 44
     }
45 45
     
46
+    /**
47
+     * @return Message
48
+     */
46 49
     public function get($mailPluginName, array $options = array())
47 50
     {
48 51
         return $this->getMailService()->get($mailPluginName, $options);
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/PaginationParams.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      * Sets pagination params and stores them in the session.
54 54
      *
55 55
      * @param String $namespace
56
-     * @param array|Parameters $params
56
+     * @param \Zend\Stdlib\ParametersInterface $params
57 57
      * @return \Core\Controller\Plugin\PaginationParams fluent interface
58 58
      */
59 59
     public function setParams($namespace, $params)
Please login to merge, or discard this patch.