File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed
setup/src/Magento/Setup/Model Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change 7
7
8
8
use Magento \Framework \Setup \Declaration \Schema \Diff \SchemaDiff ;
9
9
use Magento \Framework \Setup \Declaration \Schema \OperationsExecutor ;
10
- use Magento \Framework \Setup \Declaration \Schema \RequestFactory ;
11
10
use Magento \Framework \Setup \Declaration \Schema \SchemaConfigInterface ;
12
11
13
12
/**
@@ -25,11 +24,6 @@ class DeclarationInstaller
25
24
*/
26
25
private $ schemaDiff ;
27
26
28
- /**
29
- * @var RequestFactory
30
- */
31
- private $ requestFactory ;
32
-
33
27
/**
34
28
* @var SchemaConfigInterface
35
29
*/
@@ -41,16 +35,13 @@ class DeclarationInstaller
41
35
* @param SchemaConfigInterface $schemaConfig
42
36
* @param SchemaDiff $schemaDiff
43
37
* @param OperationsExecutor $operationsExecutor
44
- * @param RequestFactory $requestFactory
45
38
*/
46
39
public function __construct (
47
40
SchemaConfigInterface $ schemaConfig ,
48
41
SchemaDiff $ schemaDiff ,
49
- OperationsExecutor $ operationsExecutor ,
50
- RequestFactory $ requestFactory
42
+ OperationsExecutor $ operationsExecutor
51
43
) {
52
44
$ this ->operationsExecutor = $ operationsExecutor ;
53
- $ this ->requestFactory = $ requestFactory ;
54
45
$ this ->schemaConfig = $ schemaConfig ;
55
46
$ this ->schemaDiff = $ schemaDiff ;
56
47
}
You can’t perform that action at this time.
0 commit comments