mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
15 lines
312 B
PHP
15 lines
312 B
PHP
<?php
|
|
|
|
/**
|
|
* Rules for Nette Coding Standard
|
|
* https://github.com/nette/coding-standard
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix202209;
|
|
|
|
return [
|
|
// use function in Arrays.php, Callback.php, Html.php, Strings.php
|
|
'single_import_per_statement' => \false,
|
|
'ordered_imports' => \false,
|
|
];
|