File tree Expand file tree Collapse file tree 10 files changed +37
-48
lines changed
setup-integration/framework
lib/internal/Magento/Framework/App Expand file tree Collapse file tree 10 files changed +37
-48
lines changed Original file line number Diff line number Diff line change 77/**
88 * Environment initialization
99 */
10- error_reporting (E_ALL & ~ E_DEPRECATED );
10+ error_reporting (E_ALL );
1111if (in_array ('phar ' , \stream_get_wrappers ())) {
1212 stream_wrapper_unregister ('phar ' );
1313}
Original file line number Diff line number Diff line change 1212 */
1313class Iterator extends \FilterIterator
1414{
15- /**
16- * Constructor
17- *
18- * @param \Iterator $iterator
19- */
20- public function __construct (\Iterator $ iterator ) // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod
21- {
22- parent ::__construct ($ iterator );
23- }
24-
2515 /**
2616 * Check whether the current element of the iterator is acceptable
2717 *
Original file line number Diff line number Diff line change 8686 "friendsofphp/php-cs-fixer" : " ~3.3.0" ,
8787 "lusitanian/oauth" : " ~0.8.10" ,
8888 "magento/magento-coding-standard" : " *" ,
89- "magento/magento2-functional-testing-framework" : " dev-develop " ,
89+ "magento/magento2-functional-testing-framework" : " ^3.7 " ,
9090 "pdepend/pdepend" : " ~2.10.0" ,
9191 "phpmd/phpmd" : " ^2.9.1" ,
9292 "phpstan/phpstan" : " ~1.2.0" ,
Original file line number Diff line number Diff line change 1010require_once __DIR__ . '/../../../../app/bootstrap.php ' ;
1111require_once __DIR__ . '/autoload.php ' ;
1212
13- error_reporting (E_ALL & ~ E_DEPRECATED );
13+ error_reporting (E_ALL );
1414$ testsBaseDir = dirname (__DIR__ );
1515$ integrationTestsDir = realpath ("{$ testsBaseDir }/../integration " );
1616$ fixtureBaseDir = $ integrationTestsDir . '/testsuite ' ;
Original file line number Diff line number Diff line change 1313require_once __DIR__ . '/../../../../app/bootstrap.php ' ;
1414require_once __DIR__ . '/autoload.php ' ;
1515
16- error_reporting (E_ALL & ~ E_DEPRECATED );
16+ error_reporting (E_ALL );
1717// phpcs:ignore Magento2.Functions.DiscouragedFunction
1818$ testsBaseDir = dirname (__DIR__ );
1919$ fixtureBaseDir = $ testsBaseDir . '/testsuite ' ;
Original file line number Diff line number Diff line change 1212//to handle different types of errors on CI
1313require __DIR__ . '/../../error_handler.php ' ;
1414
15- error_reporting (E_ALL & ~ E_DEPRECATED );
15+ error_reporting (E_ALL );
1616$ testsBaseDir = dirname (__DIR__ );
1717$ integrationTestsDir = realpath ("{$ testsBaseDir }/../integration " );
1818$ fixtureBaseDir = $ integrationTestsDir . '/testsuite ' ;
Original file line number Diff line number Diff line change 1515use Magento \Framework \View \Design \Theme \ThemePackageFactory ;
1616
1717require __DIR__ . '/autoload.php ' ;
18- error_reporting (E_ALL & ~ E_DEPRECATED );
18+ error_reporting (E_ALL );
1919if (!defined ('TESTS_TEMP_DIR ' )) {
2020 define ('TESTS_TEMP_DIR ' , dirname (__DIR__ ) . '/tmp ' );
2121}
Original file line number Diff line number Diff line change 2626
2727\Magento \Framework \Phrase::setRenderer (new \Magento \Framework \Phrase \Renderer \Placeholder ());
2828
29- error_reporting (E_ALL & ~ E_DEPRECATED );
29+ error_reporting (E_ALL );
3030ini_set ('display_errors ' , 1 );
3131
3232/* For data consistency between displaying (printing) and serialization a float number */
Original file line number Diff line number Diff line change 55 */
66namespace Magento \Framework \App ;
77
8- /** * Used as a container for list of routers.
8+ /**
9+ * Used as a container for list of routers.
910 */
1011class RouterList implements RouterListInterface
1112{
You can’t perform that action at this time.
0 commit comments