Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
phpunit
/
php-code-coverage
/
src
/
StaticAnalysis
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
CacheWarmer.php
0.931KB
edt
ren
CachingFileAnalyser.php
5.502KB
edt
ren
CodeUnitFindingVisitor.php
9.935KB
edt
ren
ExecutableLinesFindingV
...
11.919KB
edt
ren
FileAnalyser.php
1.774KB
edt
ren
IgnoredLinesFindingVisi
...
3.572KB
edt
ren
ParsingFileAnalyser.php
8.196KB
edt
ren
<?php declare(strict_types=1); /* * This file is part of phpunit/php-code-coverage. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\CodeCoverage\StaticAnalysis; use SebastianBergmann\CodeCoverage\Filter; final class CacheWarmer { public function warmCache(string $cacheDirectory, bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecatedCode, Filter $filter): void { $analyser = new CachingFileAnalyser( $cacheDirectory, new ParsingFileAnalyser( $useAnnotationsForIgnoringCode, $ignoreDeprecatedCode, ), $useAnnotationsForIgnoringCode, $ignoreDeprecatedCode, ); foreach ($filter->files() as $file) { $analyser->process($file); } } }
<=Back
Liking