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 /
Seld /
JsonLint /
Delete
Unzip
Name
Size
Permission
Date
Action
DuplicateKeyException.php
978
B
-rw-r--r--
2022-04-01 13:37
JsonParser.php
22.62
KB
-rw-r--r--
2022-04-01 13:37
Lexer.php
6.62
KB
-rw-r--r--
2022-04-01 13:37
ParsingException.php
1.15
KB
-rw-r--r--
2022-04-01 13:37
Undefined.php
284
B
-rw-r--r--
2022-04-01 13:37
autoload.php
814
B
-rw-r--r--
2022-06-20 12:23
Save
Rename
<?php /* * This file is part of the JSON Lint package. * * (c) 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 Seld\JsonLint; class DuplicateKeyException extends ParsingException { /** * @phpstan-ignore-next-line * @var array{key: string, line: int} */ protected $details; /** * @param string $message * @param string $key * @phpstan-param array{line: int} $details */ public function __construct($message, $key, array $details) { $details['key'] = $key; parent::__construct($message, $details); } /** * @return string */ public function getKey() { return $this->details['key']; } /** * @phpstan-return array{key: string, line: int} */ public function getDetails() { return $this->details; } }