Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
friendsofphp
/
php-cs-fixer
/
src
/
Documentation
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
DocumentationLocator.php
2.236KB
edt
ren
DocumentationTag.php
0.996KB
edt
ren
DocumentationTagGenerat
...
6.204KB
edt
ren
DocumentationTagType.php
0.78KB
edt
ren
FixerDocumentGenerator.php
14.954KB
edt
ren
RstUtils.php
1.141KB
edt
ren
RuleSetDocumentationGen
...
5.261KB
edt
ren
<?php declare(strict_types=1); /* * This file is part of PHP CS Fixer. * * (c) Fabien Potencier <fabien@symfony.com> * Dariusz RumiĆski <dariusz.ruminski@gmail.com> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Documentation; use PhpCsFixer\Preg; /** * @internal * * @no-named-arguments Parameter names are not covered by the backward compatibility promise. */ final class RstUtils { private function __construct() { // cannot create instance of util. class } public static function toRst(string $string, int $indent = 0): string { $string = wordwrap(self::ensureProperInlineCode($string), 80 - $indent); return 0 === $indent ? $string : self::indent($string, $indent); } public static function ensureProperInlineCode(string $string): string { return Preg::replace('/(?<!`)(`[^`]+`)(?!`)/', '`$1`', $string); } public static function indent(string $string, int $indent): string { return Preg::replace('/(\n)(?!\n|$)/', '$1'.str_repeat(' ', $indent), $string); } }
<=Back
Liking