Skip to content

Commit 3c77304

Browse files
Dnyaneshwar S JambhulkarDnyaneshwar S Jambhulkar
authored andcommitted
AC-15068::Laminas MVC Retiring
1 parent f006a5a commit 3c77304

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

dev/tests/static/testsuite/Magento/Test/Integrity/Library/DependencyTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ protected function getAllowedNamespaces()
4444
'Setup\Console\CompilerPreparation',
4545
'Setup\Model\ObjectManagerProvider',
4646
'Setup\Mvc\Bootstrap\InitParamListener',
47+
'Setup\Module',
4748
'Store\Model\ScopeInterface',
4849
'Store\Model\StoreManagerInterface',
4950
'Directory\Model\CurrencyFactory',

setup/src/Magento/Setup/Mvc/Bootstrap/InitParamListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* A listener that injects relevant Magento initialization parameters and initializes filesystem
21-
* @deprecated Not used anymore
21+
* @deprecated Web Setup support has been removed, this class is no longer in use.
2222
* @see we don't use it anymore
2323
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2424
* @codingStandardsIgnoreStart

setup/src/Magento/Setup/Mvc/View/Http/InjectTemplateListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* Native InjectTemplateListener for HTTP request (replaces Laminas dependency)
1414
*
15-
* @deprecated Not used anymore
15+
* @deprecated Web Setup support has been removed, this class is no longer in use.
1616
* @see we don't use it anymore
1717
*/
1818
class InjectTemplateListener

setup/src/Magento/Setup/Test/Unit/Mvc/Bootstrap/InitParamListenerTest.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,10 @@ public static function createServiceDataProvider()
181181
'two MAGE_DIRS CLI' => [
182182
[],
183183
[],
184+
// phpcs:disable Generic.Files.LineLength
184185
['bin/magento', 'setup:install',
185-
'--magento-init-params=MAGE_MODE=developer&MAGE_DIRS[base][path]
186-
=/var/www/magento2&MAGE_DIRS[cache][path]=/tmp/cache'],
186+
'--magento-init-params=MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/magento2&MAGE_DIRS[cache][path]=/tmp/cache'],
187+
// phpcs:disable Generic.Files.LineLength
187188
[
188189
'MAGE_DIRS' => ['base' => ['path' => '/var/www/magento2'], 'cache' => ['path' => '/tmp/cache']],
189190
'MAGE_MODE' => 'developer',
@@ -204,9 +205,10 @@ public static function createServiceDataProvider()
204205
'two MAGE_DIRS' => [
205206
[],
206207
[],
208+
// phpcs:disable Generic.Files.LineLength
207209
['bin/magento', 'setup:install',
208-
'--magento-init-params=MAGE_MODE=developer&MAGE_DIRS[base][path]
209-
=/var/www/magento2&MAGE_DIRS[cache][path]=/tmp/cache'],
210+
'--magento-init-params=MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/magento2&MAGE_DIRS[cache][path]=/tmp/cache'],
211+
// phpcs:disable Generic.Files.LineLength
210212
[
211213
'MAGE_DIRS' => ['base' => ['path' => '/var/www/magento2'], 'cache' => ['path' => '/tmp/cache']],
212214
'MAGE_MODE' => 'developer',

0 commit comments

Comments
 (0)