@@ -75,6 +75,8 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | 77 | * @Given a third party system has copied the file :arg1 into the import folder :arg2 |
| 78 | + * @param string $arg1 |
|
| 79 | + * @param string $arg2 |
|
| 78 | 80 | */ |
| 79 | 81 | public function aThirdPartySystemHasCopiedTheFileIntoTheImportFolder($arg1, $arg2) |
| 80 | 82 | { |
@@ -101,6 +103,7 @@ discard block |
||
| 101 | 103 | |
| 102 | 104 | /** |
| 103 | 105 | * @When the command :arg1 has been executed |
| 106 | + * @param string $arg1 |
|
| 104 | 107 | */ |
| 105 | 108 | public function theCommandHasBeenExecuted($arg1) |
| 106 | 109 | { |
@@ -110,6 +113,7 @@ discard block |
||
| 110 | 113 | |
| 111 | 114 | /** |
| 112 | 115 | * @When the magento command :arg1 has been executed |
| 116 | + * @param string $arg1 |
|
| 113 | 117 | */ |
| 114 | 118 | public function theMagentoCommandHasBeenExecuted($arg1) |
| 115 | 119 | { |
@@ -158,6 +162,7 @@ discard block |
||
| 158 | 162 | |
| 159 | 163 | /** |
| 160 | 164 | * @Then a message :arg1 has to be rendered |
| 165 | + * @param string $arg1 |
|
| 161 | 166 | */ |
| 162 | 167 | public function assertMessage($arg1) |
| 163 | 168 | { |
@@ -3,7 +3,6 @@ |
||
| 3 | 3 | use Behat\Behat\Context\Context; |
| 4 | 4 | use Behat\Behat\Hook\Scope\AfterScenarioScope; |
| 5 | 5 | use Behat\Behat\Hook\Scope\BeforeScenarioScope; |
| 6 | -use Behat\Behat\Tester\Exception\PendingException; |
|
| 7 | 6 | use TechDivision\Import\Adapter\PhpFilesystemAdapter; |
| 8 | 7 | use Behat\Symfony2Extension\Context\KernelAwareContext; |
| 9 | 8 | |