Completed
Pull Request — master (#178)
by Phil
05:46
created
src/Behat/Gherkin/Loader/GherkinFileLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * Checks if current loader supports provided resource.
51 51
      *
52
-     * @param mixed $path Resource to load
52
+     * @param string $path Resource to load
53 53
      *
54 54
      * @return Boolean
55 55
      */
Please login to merge, or discard this patch.
src/Behat/Gherkin/Loader/YamlFileLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * Checks if current loader supports provided resource.
51 51
      *
52
-     * @param mixed $path Resource to load
52
+     * @param string $path Resource to load
53 53
      *
54 54
      * @return Boolean
55 55
      */
Please login to merge, or discard this patch.
tests/Behat/Gherkin/Keywords/KeywordsTest.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -14,8 +14,16 @@
 block discarded – undo
14 14
 
15 15
 abstract class KeywordsTest extends TestCase
16 16
 {
17
+    /**
18
+     * @return \Behat\Gherkin\Keywords\KeywordsInterface
19
+     */
17 20
     abstract protected function getKeywords();
18 21
     abstract protected function getKeywordsArray();
22
+
23
+    /**
24
+     * @param string $text
25
+     * @param string $keywordType
26
+     */
19 27
     abstract protected function getSteps($keywords, $text, &$line, $keywordType);
20 28
 
21 29
     public function translationTestDataProvider()
Please login to merge, or discard this patch.