Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
.php-cs-fixer.dist.php
01 <?php
02
03 return (new PhpCsFixer\Config())
04 ->setRules([
05 '@Symfony' => true,
06 '@Symfony:risky' => true,
07 '@PHPUnit75Migration:risky' => true,
08 'php_unit_dedicate_assert' => ['target' => '5.6'],
09 'array_syntax' => ['syntax' => 'short'],
10 'php_unit_fqcn_annotation' => true,
11 'no_unreachable_default_argument_value' => false,
12 'braces' => ['allow_single_line_closure' => true],
13 'heredoc_to_nowdoc' => false,
14 'ordered_imports' => true,
15 'phpdoc_types_order' => ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none'],
16 'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'all'],
17 ])
18 ->setRiskyAllowed(true)
19 ->setFinder((new PhpCsFixer\Finder())->in(__DIR__))
20 ;
21