Completed
Pull Request — develop (#429)
by Carsten
07:02
created
module/Applications/src/Applications/Controller/ManageController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -54,6 +54,7 @@
 block discarded – undo
54 54
 	 * ManageController constructor.
55 55
 	 *
56 56
 	 * @param RepositoryService $repositories
57
+	 * @param ContainerInterface $container
57 58
 	 */
58 59
 	public function __construct(
59 60
 		RepositoryService $repositories,
Please login to merge, or discard this patch.
module/Applications/src/Applications/Listener/Events/ApplicationEvent.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @return mixed
171
+     * @return string
172 172
      */
173 173
     public function getStatus()
174 174
     {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     }
177 177
 
178 178
     /**
179
-     * @return mixed
179
+     * @return boolean
180 180
      */
181 181
     public function isPostRequest()
182 182
     {
Please login to merge, or discard this patch.
module/Auth/src/Auth/Controller/IndexController.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
 	 * @param $locale
80 80
 	 * @param $urlHelper
81 81
 	 * @param array $forms
82
-	 * @param $options
82
+	 * @param ModuleOptions $options
83 83
 	 */
84 84
     public function __construct(
85 85
     	AuthenticationService $auth,
Please login to merge, or discard this patch.
module/Auth/src/Auth/Controller/Plugin/Auth.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,6 @@
 block discarded – undo
99 99
     }
100 100
     
101 101
     /**
102
-     * @param ControllerManager $controllerManager
103 102
      * @return \Auth\Controller\Plugin\Auth
104 103
      */
105 104
     public static function factory(ServiceManager $sm)
Please login to merge, or discard this patch.
module/Auth/src/Auth/Factory/Service/RegisterConfirmationFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      * @param  string             $requestedName
26 26
      * @param  null|array         $options
27 27
      *
28
-     * @return object
28
+     * @return RegisterConfirmation
29 29
      * @throws ServiceNotFoundException if unable to resolve the service.
30 30
      * @throws ServiceNotCreatedException if an exception is raised when
31 31
      *     creating a service.
Please login to merge, or discard this patch.
module/Auth/src/Auth/Factory/Service/UserUniqueTokenGeneratorFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param  string             $requestedName
25 25
      * @param  null|array         $options
26 26
      *
27
-     * @return object
27
+     * @return UserUniqueTokenGenerator
28 28
      * @throws ServiceNotFoundException if unable to resolve the service.
29 29
      * @throws ServiceNotCreatedException if an exception is raised when
30 30
      *     creating a service.
Please login to merge, or discard this patch.
module/Behat/src/CommonContextTrait.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@  discard block
 block discarded – undo
54 54
 		return $this->coreContext->generateUrl($url);
55 55
 	}
56 56
 	
57
+	/**
58
+	 * @param string $url
59
+	 */
57 60
 	public function visit($url)
58 61
 	{
59 62
 		$this->coreContext->iVisit($this->generateUrl($url));
@@ -69,7 +72,7 @@  discard block
 block discarded – undo
69 72
 	}
70 73
 	
71 74
 	/**
72
-	 * @param $id
75
+	 * @param string $id
73 76
 	 *
74 77
 	 * @return RepositoryInterface
75 78
 	 */
Please login to merge, or discard this patch.
module/Behat/src/CoreContext.php 1 patch
Doc Comments   +7 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,8 +76,7 @@  discard block
 block discarded – undo
76 76
 	}
77 77
 	
78 78
 	/**
79
-	 * @param $name
80
-	 * @param array $params
79
+	 * @param string $name
81 80
 	 *
82 81
 	 * @return string
83 82
 	 */
@@ -88,6 +87,7 @@  discard block
 block discarded – undo
88 87
 	
89 88
 	/**
90 89
 	 * @When /^I hover over the element "([^"]*)"$/
90
+	 * @param string $locator
91 91
 	 */
92 92
 	public function iHoverOverTheElement($locator)
93 93
 	{
@@ -163,6 +163,9 @@  discard block
 block discarded – undo
163 163
 		$this->getSession()->switchToWindow('main_window');
164 164
 	}
165 165
 	
166
+	/**
167
+	 * @param string $url
168
+	 */
166 169
 	public function iVisit($url)
167 170
 	{
168 171
 		$this->minkContext->getSession()->visit($url);
@@ -233,10 +236,10 @@  discard block
 block discarded – undo
233 236
 	}
234 237
 	
235 238
 	/**
236
-	 * @param $locator
239
+	 * @param string $locator
237 240
 	 * @param string $selector
238 241
 	 *
239
-	 * @return \Behat\Mink\Element\NodeElement|mixed|null
242
+	 * @return \Behat\Mink\Element\NodeElement|null
240 243
 	 */
241 244
 	public function getElement($locator,$selector='css')
242 245
 	{
Please login to merge, or discard this patch.
module/Behat/src/Select2Context.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@  discard block
 block discarded – undo
31 31
 	 *
32 32
 	 * @When /^(?:|I )fill in select2 "(?P<field>(?:[^"]|\\")*)" with "(?P<value>(?:[^"]|\\")*)"$/
33 33
 	 * @When /^(?:|I )fill in select2 "(?P<value>(?:[^"]|\\")*)" for "(?P<field>(?:[^"]|\\")*)"$/
34
+	 * @param string $field
34 35
 	 */
35 36
 	public function iFillInSelect2Field($field, $value)
36 37
 	{
@@ -42,7 +43,7 @@  discard block
 block discarded – undo
42 43
 	
43 44
 	/**
44 45
 	 * @When I fill in select2 search :field with :search and I choose :choice
45
-	 * @param $field
46
+	 * @param string $field
46 47
 	 * @param $value
47 48
 	 */
48 49
 	public function iFillInSelect2FieldWith($field,$search,$choice=null)
Please login to merge, or discard this patch.