ncs.php 271 B

1234567891011121314
  1. <?php
  2. /**
  3. * Rules for Nette Coding Standard
  4. * https://github.com/nette/coding-standard
  5. */
  6. declare(strict_types=1);
  7. return [
  8. // use function in Arrays.php, Callback.php, Html.php, Strings.php
  9. 'single_import_per_statement' => false,
  10. 'ordered_imports' => false,
  11. ];