Skip to content

Commit 169926a

Browse files
author
Sergii Kovalenko
committed
MAGETWO-91034: Renaming of new setup commands and setup:install/setup:upgrade attributes
1 parent 8248a66 commit 169926a

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

setup/src/Magento/Setup/Model/DeclarationInstaller.php

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
use Magento\Framework\Setup\Declaration\Schema\Diff\SchemaDiff;
99
use Magento\Framework\Setup\Declaration\Schema\OperationsExecutor;
10-
use Magento\Framework\Setup\Declaration\Schema\RequestFactory;
1110
use Magento\Framework\Setup\Declaration\Schema\SchemaConfigInterface;
1211

1312
/**
@@ -25,11 +24,6 @@ class DeclarationInstaller
2524
*/
2625
private $schemaDiff;
2726

28-
/**
29-
* @var RequestFactory
30-
*/
31-
private $requestFactory;
32-
3327
/**
3428
* @var SchemaConfigInterface
3529
*/
@@ -41,16 +35,13 @@ class DeclarationInstaller
4135
* @param SchemaConfigInterface $schemaConfig
4236
* @param SchemaDiff $schemaDiff
4337
* @param OperationsExecutor $operationsExecutor
44-
* @param RequestFactory $requestFactory
4538
*/
4639
public function __construct(
4740
SchemaConfigInterface $schemaConfig,
4841
SchemaDiff $schemaDiff,
49-
OperationsExecutor $operationsExecutor,
50-
RequestFactory $requestFactory
42+
OperationsExecutor $operationsExecutor
5143
) {
5244
$this->operationsExecutor = $operationsExecutor;
53-
$this->requestFactory = $requestFactory;
5445
$this->schemaConfig = $schemaConfig;
5546
$this->schemaDiff = $schemaDiff;
5647
}

0 commit comments

Comments
 (0)