Completed
Push — develop ( dce9ea...970920 )
by Mathias
30s queued 20s
created
module/Behat/src/CommonContextTrait.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@  discard block
 block discarded – undo
51 51
 		$this->summaryFormContext = $scope->getEnvironment()->getContext(SummaryFormContext::class);
52 52
 	}
53 53
 	
54
+	/**
55
+	 * @param string $name
56
+	 */
54 57
 	public function generateUrl($name,array $params=array(),array $options=array())
55 58
 	{
56 59
 	    $defaults = ['lang'=>'en'];
@@ -71,7 +74,7 @@  discard block
 block discarded – undo
71 74
 	}
72 75
 	
73 76
 	/**
74
-	 * @param $id
77
+	 * @param string $id
75 78
 	 * @return mixed|object
76 79
 	 */
77 80
 	public function getService($id)
@@ -80,7 +83,7 @@  discard block
 block discarded – undo
80 83
 	}
81 84
 	
82 85
 	/**
83
-	 * @param $id
86
+	 * @param string $id
84 87
 	 *
85 88
 	 * @return RepositoryInterface
86 89
 	 */
Please login to merge, or discard this patch.
module/Behat/src/CoreContext.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,7 +91,6 @@  discard block
 block discarded – undo
91 91
 	
92 92
 	/**
93 93
 	 * @param $name
94
-	 * @param array $params
95 94
 	 *
96 95
 	 * @return string
97 96
 	 */
@@ -102,6 +101,7 @@  discard block
 block discarded – undo
102 101
 	
103 102
 	/**
104 103
 	 * @When /^I hover over the element "([^"]*)"$/
104
+	 * @param string $locator
105 105
 	 */
106 106
 	public function iHoverOverTheElement($locator)
107 107
 	{
@@ -247,10 +247,10 @@  discard block
 block discarded – undo
247 247
 	}
248 248
 	
249 249
 	/**
250
-	 * @param $locator
250
+	 * @param string $locator
251 251
 	 * @param string $selector
252 252
 	 *
253
-	 * @return \Behat\Mink\Element\NodeElement|mixed|null
253
+	 * @return \Behat\Mink\Element\NodeElement|null
254 254
 	 */
255 255
 	public function getElement($locator,$selector='css')
256 256
 	{
Please login to merge, or discard this patch.