| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Rules for Nette Coding Standard |
| 5 |
* https://github.com/nette/coding-standard |
| 6 |
*/ |
| 7 |
declare (strict_types=1); |
| 8 |
namespace Packetery; |
| 9 |
|
| 10 |
return [ |
| 11 |
// constant NULL, FALSE in src/PhpGenerator/Type.php |
| 12 |
'constant_case' => \false, |
| 13 |
'lowercase_static_reference' => \false, |
| 14 |
]; |
| 15 |
|