Files
interblue.pl/modules/empikmarketplace/upgrade/upgrade-2.3.0.php
Jacek Pyziak 3bd8164d3d Add PHPStan configuration for Symfony4 tests
- Created a new phpstan.neon file in the Symfony4 tests directory.
- Configured paths and excluded Symfony3 directory.
- Added bootstrap files for autoloading.
- Set dynamic constant names and adjusted reporting settings.
- Established PHPStan level to 6 for stricter analysis.
2026-02-09 23:14:09 +01:00

13 lines
214 B
PHP

<?php
use Empik\Marketplace\Adapter\ConfigurationAdapter;
function upgrade_module_2_3_0($object)
{
$return = true;
$return &= $object->unregisterHook('actionBeforeUpgradeModule');
return $return;
}