- 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.
12 lines
254 B
PHP
12 lines
254 B
PHP
<?php
|
|
|
|
use Empik\Marketplace\Utils\DbUtils;
|
|
|
|
function upgrade_module_2_1_0($object)
|
|
{
|
|
$return = true;
|
|
|
|
$return &= DbUtils::safeAddColumn('empik_orders', 'empik_tracking_number', 'VARCHAR(255) NOT NULL AFTER empik_carrier');
|
|
|
|
return $return;
|
|
} |