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 : 18.219.197.162
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
jms /
serializer-bundle /
Debug /
Delete
Unzip
Name
Size
Permission
Date
Action
DataCollector.php
3.84
KB
-rw-rw-r--
2021-12-01 12:22
RunsListener.php
447
B
-rw-rw-r--
2021-12-01 12:22
TraceableDriver.php
1.31
KB
-rw-rw-r--
2021-12-01 12:22
TraceableEventDispatcher.php
3.63
KB
-rw-rw-r--
2021-12-01 12:22
TraceableFileLocator.php
716
B
-rw-rw-r--
2021-12-01 12:22
TraceableHandlerRegistry.php
3.64
KB
-rw-rw-r--
2021-12-01 12:22
Save
Rename
<?php declare(strict_types=1); namespace JMS\SerializerBundle\Debug; use Metadata\Driver\FileLocator; /** * @internal */ final class TraceableFileLocator extends FileLocator { private $files = []; public function __construct(array $dirs) { parent::__construct($dirs); } public function getAttemptedFiles() { return $this->files; } protected function loadFileIfFound($prefix, $dir, \ReflectionClass $class, $extension) { $pathData = parent::loadFileIfFound($prefix, $dir, $class, $extension); if ($pathData[0] !== null) { $this->files[$class->getName()][$pathData[0]] = $pathData[1]; } return $pathData; } }