Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Composer /
ClassMapGenerator /
Delete
Unzip
Name
Size
Permission
Date
Action
ClassMap.php
3.16
KB
-rw-r--r--
2022-06-19 11:31
ClassMapGenerator.php
12.79
KB
-rw-r--r--
2022-06-19 11:31
FileList.php
866
B
-rw-r--r--
2022-06-19 11:31
PhpFileCleaner.php
6.94
KB
-rw-r--r--
2022-06-19 11:31
PhpFileParser.php
5.37
KB
-rw-r--r--
2022-06-19 11:31
autoload.php
1.01
KB
-rw-r--r--
2024-02-13 16:00
Save
Rename
<?php declare(strict_types=1); /* * This file is part of Composer. * * (c) Nils Adermann <naderman@naderman.de> * Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\ClassMapGenerator; /** * Contains a list of files which were scanned to generate a classmap * * @author Jordi Boggiano <j.boggiano@seld.be> */ class FileList { /** * @var array<non-empty-string, true> */ public $files = []; /** * @param non-empty-string $path */ public function add(string $path): void { $this->files[$path] = true; } /** * @param non-empty-string $path */ public function contains(string $path): bool { return isset($this->files[$path]); } }