We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a7a8d8 commit 0232087Copy full SHA for 0232087
src/Magento/FunctionalTestingFramework/Codeception/Subscriber/Console.php
@@ -31,6 +31,20 @@ class Console extends \Codeception\Subscriber\Console
31
*/
32
private $actionGroupStepKey = null;
33
34
+ /**
35
+ * Console constructor. Parent constructor requires codeception CLI options, and does not have its own configs.
36
+ * Constructor is only different than parent due to the way Codeception instantiates Extensions.
37
+ *
38
+ * @param array $extensionOptions
39
+ * @param array $options
40
41
+ * @SuppressWarnings(PHPMD)
42
+ */
43
+ public function __construct($extensionOptions = [], $options = [])
44
+ {
45
+ parent::__construct($options);
46
+ }
47
+
48
/**
49
* Printing stepKey in before step action.
50
*
0 commit comments