mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
33019ba2ff
[MysqlToMysqli] Deprecate set, as dangerous to use, better handle manually (#4448)
10 lines
230 B
PHP
10 lines
230 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix202307;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
return static function (RectorConfig $rectorConfig) : void {
|
|
// @deprecated Handle manually with explicit refactoring instead.
|
|
};
|