File: ncs.php

package info (click to toggle)
php-nette-utils 4.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,420 kB
  • sloc: php: 4,069; xml: 12; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

/**
 * Rules for Nette Coding Standard
 * https://github.com/nette/coding-standard
 */

declare(strict_types=1);

return [
	// use function in Arrays.php, Callback.php, Html.php, Strings.php
	'single_import_per_statement' => false,
	'ordered_imports' => false,
	// Reflection.php
	'Nette/statement_indentation' => false,
];