Completed
Pull Request — master (#99)
by Kevin
06:07
created
lib/AbstractTestCase.php 1 patch
Doc Comments   +20 added lines, -2 removed lines patch added patch discarded remove patch
@@ -251,6 +251,9 @@  discard block
 block discarded – undo
251 251
         }
252 252
     }
253 253
 
254
+    /**
255
+     * @param null|string $selector
256
+     */
254 257
     public function assertElementClickable($selector, $by = WebDriver::BY_ID)
255 258
     {
256 259
         $this->elementAssertion($selector, $by, Clickable::ASSERTION);
@@ -268,6 +271,9 @@  discard block
 block discarded – undo
268 271
         $this->testCaseConfiguration = $class;
269 272
     }
270 273
 
274
+    /**
275
+     * @param string $namespace
276
+     */
271 277
     public static function addBaseNamespace($namespace)
272 278
     {
273 279
         if (!in_array($namespace, self::$baseNamespaces)) {
@@ -275,6 +281,9 @@  discard block
 block discarded – undo
275 281
         }
276 282
     }
277 283
 
284
+    /**
285
+     * @param string $prefix
286
+     */
278 287
     public static function resolveClass( $class, $prefix = null)
279 288
     {
280 289
         $origClass = $class;
@@ -306,6 +315,9 @@  discard block
 block discarded – undo
306 315
 
307 316
     }
308 317
 
318
+    /**
319
+     * @return string
320
+     */
309 321
     protected function normalizeClassRequest($class)
310 322
     {
311 323
         return str_replace('/', '\\', $class);
@@ -398,7 +410,7 @@  discard block
 block discarded – undo
398 410
      *
399 411
      * Options: 1s (1 second), 1ms (1 millisecond), 1us (1 microsecond), 1ns (1 nanosecond)
400 412
      *
401
-     * @param $time
413
+     * @param string $time
402 414
      */
403 415
 
404 416
     public function sleep($time)
@@ -600,7 +612,7 @@  discard block
 block discarded – undo
600 612
     }
601 613
 
602 614
     /**
603
-     * @param $xpath
615
+     * @param string $xpath
604 616
      * @return \Facebook\WebDriver\Remote\RemoteWebElement
605 617
      */
606 618
 
@@ -629,6 +641,12 @@  discard block
 block discarded – undo
629 641
         return $this->webdriver->byCssSelector($selector);
630 642
     }
631 643
 
644
+    /**
645
+     * @param string $xpathTemplate
646
+     * @param string $text
647
+     * @param string $specificNodeType
648
+     * @param string $parentElementSelector
649
+     */
632 650
     protected function getElementByTextXpath($xpathTemplate, $text, $specificNodeType = null, $parentElementSelector = null)
633 651
     {
634 652
 
Please login to merge, or discard this patch.
lib/Cli/Command/AbstractApiEnablement.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -15,6 +15,10 @@
 block discarded – undo
15 15
 {
16 16
 
17 17
     abstract function getApiName();
18
+
19
+    /**
20
+     * @return string
21
+     */
18 22
     abstract function getApiDescription();
19 23
     abstract function getValue();
20 24
 
Please login to merge, or discard this patch.
lib/Util/Api/Clairvoyant/Clairvoyant.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
     }
90 90
 
91 91
     /**
92
-     * @return mixed
92
+     * @return string
93 93
      */
94 94
     public function getProjectId()
95 95
     {
Please login to merge, or discard this patch.