mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
132062acf3
* [DeadCode] Fix dead method in property promotion * bump workflows PHP version to 7.2, to respect symplify bump * allow non-existing attributes in tests
12 lines
372 B
PHP
12 lines
372 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
use Symplify\ChangelogLinker\ValueObject\Option;
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
|
$parameters = $containerConfigurator->parameters();
|
|
$parameters->set(Option::AUTHORS_TO_IGNORE, ['TomasVotruba']);
|
|
};
|