Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
vendor /
facade /
ignition /
Delete
Unzip
Name
Size
Permission
Date
Action
config
[ DIR ]
drwxr-xr-x
2022-04-21 14:17
resources
[ DIR ]
drwxr-xr-x
2022-04-21 14:17
src
[ DIR ]
drwxr-xr-x
2022-04-21 14:17
.php_cs.php
1.25
KB
-rw-r--r--
2022-04-21 14:17
CHANGELOG.md
12.06
KB
-rw-r--r--
2022-04-21 14:17
LICENSE.md
1.06
KB
-rw-r--r--
2022-04-21 14:17
README.md
1.7
KB
-rw-r--r--
2022-04-21 14:17
SECURITY.md
118
B
-rw-r--r--
2022-04-21 14:17
composer.json
2.1
KB
-rw-r--r--
2022-04-21 14:17
package.json
1.87
KB
-rw-r--r--
2022-04-21 14:17
psalm-baseline.xml
1.72
KB
-rw-r--r--
2022-04-21 14:17
psalm.xml
1.57
KB
-rw-r--r--
2022-04-21 14:17
Save
Rename
<?php $finder = Symfony\Component\Finder\Finder::create() ->in([ __DIR__ . '/src', __DIR__ . '/tests', ]) ->name('*.php') ->notName('*.blade.php') ->ignoreDotFiles(true) ->ignoreVCS(true); return (new PhpCsFixer\Config()) ->setRules([ '@PSR12' => true, 'array_syntax' => ['syntax' => 'short'], 'ordered_imports' => ['sort_algorithm' => 'alpha'], 'no_unused_imports' => true, 'not_operator_with_successor_space' => true, 'trailing_comma_in_multiline' => true, 'phpdoc_scalar' => true, 'unary_operator_spaces' => true, 'binary_operator_spaces' => true, 'blank_line_before_statement' => [ 'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'], ], 'phpdoc_single_line_var_spacing' => true, 'phpdoc_var_without_name' => true, 'class_attributes_separation' => [ 'elements' => [ 'method' => 'one', ], ], 'method_argument_space' => [ 'on_multiline' => 'ensure_fully_multiline', 'keep_multiple_spaces_after_comma' => true, ], 'single_trait_insert_per_statement' => true, ]) ->setFinder($finder);