One Hat Cyber Team
Your IP :
18.118.216.5
Server IP :
104.21.32.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
/
scrivo
/
highlight.php
/
View File Name :
.php-cs-fixer.dist.php
<?php $finder = PhpCsFixer\Finder::create() ->in('demo') ->in('Highlight') ->in('HighlightUtilities') ->in('test') ->in('tools') ->exclude('lib_dojo') ->exclude('lib_highlight') ; $config = new PhpCsFixer\Config(); return $config ->setRules([ '@PSR1' => true, '@PSR2' => true, '@Symfony' => true, 'array_indentation' => true, 'array_syntax' => ['syntax' => 'long'], 'concat_space' => ['spacing' => 'one'], 'echo_tag_syntax' => ['format' => 'short'], 'no_alias_language_construct_call' => false, 'no_alternative_syntax' => false, 'no_useless_else' => true, 'no_useless_return' => true, 'phpdoc_align' => true, 'phpdoc_order' => true, 'phpdoc_trim_consecutive_blank_line_separation' => true, 'single_quote' => false, 'ternary_to_null_coalescing' => false, 'trailing_comma_in_multiline' => true, 'visibility_required' => false, 'yoda_style' => [ 'equal' => false, 'identical' => false, ], ]) ->setFinder($finder) ;