mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 12:14:02 +01:00
a1ac1b6fdf
[Feature] Add ReturnAnnotationIncorrectNullableRector for fixing incorrect null type in @return (#2060)
15 lines
314 B
PHP
15 lines
314 B
PHP
<?php
|
|
|
|
/**
|
|
* Rules for Nette Coding Standard
|
|
* https://github.com/nette/coding-standard
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220412;
|
|
|
|
return [
|
|
// use function in Arrays.php, Callback.php, Html.php, Strings.php
|
|
'single_import_per_statement' => \false,
|
|
'ordered_imports' => \false,
|
|
];
|