ncs.php 254 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. // constant NULL, FALSE in src/PhpGenerator/Type.php
  9. 'constant_case' => false,
  10. 'lowercase_static_reference' => false,
  11. ];