Skip to content

Commit 3d31834

Browse files
committed
Declare property types
1 parent d3e17f2 commit 3d31834

File tree

1 file changed

+9
-17
lines changed

1 file changed

+9
-17
lines changed

app/code/Magento/SampleData/Console/Command/SampleDataDeployCommand.php

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,31 +34,23 @@ class SampleDataDeployCommand extends Command
3434
{
3535
public const OPTION_NO_UPDATE = 'no-update';
3636

37-
/**
38-
* @var Filesystem
39-
*/
40-
private $filesystem;
37+
/** @var Filesystem */
38+
private Filesystem $filesystem;
4139

42-
/**
43-
* @var Dependency
44-
*/
45-
private $sampleDataDependency;
40+
/** @var Dependency */
41+
private Dependency $sampleDataDependency;
4642

4743
/**
4844
* @var ArrayInputFactory
4945
* @deprecated 100.1.0
5046
*/
51-
private $arrayInputFactory;
47+
private ArrayInputFactory $arrayInputFactory;
5248

53-
/**
54-
* @var ApplicationFactory
55-
*/
56-
private $applicationFactory;
49+
/** @var ApplicationFactory */
50+
private ApplicationFactory $applicationFactory;
5751

58-
/**
59-
* @var Json
60-
*/
61-
private $serializer;
52+
/** @var Json */
53+
private Json $serializer;
6254

6355
/**
6456
* @param Filesystem $filesystem

0 commit comments

Comments
 (0)