rector/config/set/type-declaration-strict.php
Tomas Votruba 764b0a2692 Updated Rector to commit cb5b01223d46272004e947f122ae1e36d516f83a
cb5b01223d [automated] Re-Generate Nodes/Rectors Documentation (#3259)
2023-01-01 00:36:31 +00:00

12 lines
346 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix202301;
use Rector\Config\RectorConfig;
// deprecated, use type-declaration config instead
return static function (RectorConfig $rectorConfig) : void {
\trigger_error('The TYPE_DECLARATION_STRICT is deprecated, use TYPE_DECLARATION instead that include this rules.');
\sleep(3);
};