OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
php
/
Seld
/
JsonLint
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/20/2024 06:32:22 AM
rwxr-xr-x
📄
DuplicateKeyException.php
568 bytes
01/24/2018 12:46:19 PM
rw-r--r--
📄
JsonParser.php
20.15 KB
01/24/2018 12:46:19 PM
rw-r--r--
📄
Lexer.php
5.6 KB
01/24/2018 12:46:19 PM
rw-r--r--
📄
ParsingException.php
560 bytes
01/24/2018 12:46:19 PM
rw-r--r--
📄
Undefined.php
284 bytes
01/24/2018 12:46:19 PM
rw-r--r--
📄
autoload.php
814 bytes
02/12/2018 10:26:31 PM
rw-r--r--
Editing: DuplicateKeyException.php
Close
<?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 { public function __construct($message, $key, array $details = array()) { $details['key'] = $key; parent::__construct($message, $details); } public function getKey() { return $this->details['key']; } }