File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
app/code/Magento/SampleData/Console/Command Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 21
21
22
22
/**
23
23
* Command for deployment of Sample Data
24
+ * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
24
25
*/
25
26
class SampleDataDeployCommand extends Command
26
27
{
@@ -34,6 +35,12 @@ class SampleDataDeployCommand extends Command
34
35
*/
35
36
private $ sampleDataDependency ;
36
37
38
+ /**
39
+ * @var ArrayInputFactory
40
+ * @deprecated
41
+ */
42
+ private $ arrayInputFactory ;
43
+
37
44
/**
38
45
* @var ApplicationFactory
39
46
*/
@@ -44,7 +51,6 @@ class SampleDataDeployCommand extends Command
44
51
* @param Dependency $sampleDataDependency
45
52
* @param ArrayInputFactory $arrayInputFactory
46
53
* @param ApplicationFactory $applicationFactory
47
- * @SuppressWarnings(PHPMD.UnusedLocalVariable)
48
54
*/
49
55
public function __construct (
50
56
Filesystem $ filesystem ,
@@ -54,6 +60,7 @@ public function __construct(
54
60
) {
55
61
$ this ->filesystem = $ filesystem ;
56
62
$ this ->sampleDataDependency = $ sampleDataDependency ;
63
+ $ this ->arrayInputFactory = $ arrayInputFactory ;
57
64
$ this ->applicationFactory = $ applicationFactory ;
58
65
parent ::__construct ();
59
66
}
You can’t perform that action at this time.
0 commit comments