12
12
use Magento \SampleData \Model \Dependency ;
13
13
use Magento \Framework \App \State ;
14
14
use Symfony \Component \Console \Input \ArrayInput ;
15
- use Symfony \Component \Console \Input \ArrayInputFactory ;
16
15
use Magento \Framework \App \Filesystem \DirectoryList ;
17
16
use Magento \Framework \Filesystem ;
18
17
use Composer \Console \Application ;
21
20
22
21
/**
23
22
* Command for deployment of Sample Data
24
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
25
23
*/
26
24
class SampleDataDeployCommand extends Command
27
25
{
@@ -36,7 +34,7 @@ class SampleDataDeployCommand extends Command
36
34
private $ sampleDataDependency ;
37
35
38
36
/**
39
- * @var ArrayInputFactory
37
+ * @var \Symfony\Component\Console\Input\ ArrayInputFactory
40
38
* @deprecated
41
39
*/
42
40
private $ arrayInputFactory ;
@@ -49,13 +47,13 @@ class SampleDataDeployCommand extends Command
49
47
/**
50
48
* @param Filesystem $filesystem
51
49
* @param Dependency $sampleDataDependency
52
- * @param ArrayInputFactory $arrayInputFactory
50
+ * @param \Symfony\Component\Console\Input\ ArrayInputFactory $arrayInputFactory
53
51
* @param ApplicationFactory $applicationFactory
54
52
*/
55
53
public function __construct (
56
54
Filesystem $ filesystem ,
57
55
Dependency $ sampleDataDependency ,
58
- ArrayInputFactory $ arrayInputFactory ,
56
+ \ Symfony \ Component \ Console \ Input \ ArrayInputFactory $ arrayInputFactory ,
59
57
ApplicationFactory $ applicationFactory
60
58
) {
61
59
$ this ->filesystem = $ filesystem ;
0 commit comments