One Hat Cyber Team
Your IP :
3.15.187.189
Server IP :
104.21.64.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
gftag.com
/
vendor
/
nunomaduro
/
collision
/
View File Name :
.php_cs
<?php $finder = PhpCsFixer\Finder::create() ->in(__DIR__ . DIRECTORY_SEPARATOR . 'tests') ->notPath(__DIR__ . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'laravel') ->in(__DIR__ . DIRECTORY_SEPARATOR . 'src') ->append(['.php_cs']); $rules = [ '@Symfony' => true, 'phpdoc_no_empty_return' => false, 'array_syntax' => ['syntax' => 'short'], 'yoda_style' => false, 'binary_operator_spaces' => [ 'operators' => [ '=>' => 'align', '=' => 'align', ], ], 'concat_space' => ['spacing' => 'one'], 'not_operator_with_space' => false, ]; $rules['increment_style'] = ['style' => 'post']; return PhpCsFixer\Config::create() ->setUsingCache(true) ->setRules($rules) ->setFinder($finder);