Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.137.152.81
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
nunomaduro /
collision /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
src
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
.php_cs
836
B
-rw-r--r--
2020-11-17 16:24
LICENSE.md
1.07
KB
-rw-r--r--
2020-11-17 16:24
README.md
3.15
KB
-rw-r--r--
2020-11-17 16:24
composer.json
2.08
KB
-rw-r--r--
2020-11-17 16:24
phpstan.neon.dist
826
B
-rw-r--r--
2020-11-17 16:24
phpunit.xml.dist
930
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?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);