����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.15.201.103 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/app/libraries/vendor/league/url/src/ |
Upload File : |
<?php /** * This file is part of the League.url library * * @license http://opensource.org/licenses/MIT * @link https://github.com/thephpleague/url/ * @version 3.3.5 * @package League.url * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\Url; /** * A Immutable Value Object class to manipulate URLs * * @package League.url * @since 3.0.0 */ class UrlImmutable extends AbstractUrl { /** * The Constructor * @param Components\Scheme $scheme The URL Scheme component * @param Components\User $user The URL User component * @param Components\Pass $pass The URL Pass component * @param Components\HostInterface $host The URL Host component * @param Components\Port $port The URL Port component * @param Components\PathInterface $path The URL Path component * @param Components\QueryInterface $query The URL Query component * @param Components\Fragment $fragment The URL Fragment component */ protected function __construct( Components\Scheme $scheme, Components\User $user, Components\Pass $pass, Components\HostInterface $host, Components\Port $port, Components\PathInterface $path, Components\QueryInterface $query, Components\Fragment $fragment ) { $this->scheme = clone $scheme; $this->user = clone $user; $this->pass = clone $pass; $this->host = clone $host; $this->port = clone $port; $this->path = clone $path; $this->query = clone $query; $this->fragment = clone $fragment; } /** * To Enable cloning */ public function __clone() { $this->scheme = clone $this->scheme; $this->user = clone $this->user; $this->pass = clone $this->pass; $this->host = clone $this->host; $this->port = clone $this->port; $this->path = clone $this->path; $this->query = clone $this->query; $this->fragment = clone $this->fragment; } /** * {@inheritdoc} */ public function setScheme($data) { $clone = clone $this; $clone->scheme->set($data); return $clone; } /** * {@inheritdoc} */ public function getScheme() { return clone $this->scheme; } /** * {@inheritdoc} */ public function setUser($data) { $clone = clone $this; $clone->user->set($data); return $clone; } /** * {@inheritdoc} */ public function getUser() { return clone $this->user; } /** * {@inheritdoc} */ public function setPass($data) { $clone = clone $this; $clone->pass->set($data); return $clone; } /** * {@inheritdoc} */ public function getPass() { return clone $this->pass; } /** * {@inheritdoc} */ public function setHost($data) { $clone = clone $this; $clone->host->set($data); return $clone; } /** * {@inheritdoc} */ public function getHost() { return clone $this->host; } /** * {@inheritdoc} */ public function setPort($data) { $clone = clone $this; $clone->port->set($data); return $clone; } /** * {@inheritdoc} */ public function getPort() { return clone $this->port; } /** * {@inheritdoc} */ public function setPath($data) { $clone = clone $this; $clone->path->set($data); return $clone; } /** * {@inheritdoc} */ public function getPath() { return clone $this->path; } /** * {@inheritdoc} */ public function setQuery($data) { $clone = clone $this; $clone->query->set($data); return $clone; } /** * {@inheritdoc} */ public function getQuery() { return clone $this->query; } /** * {@inheritdoc} */ public function setFragment($data) { $clone = clone $this; $clone->fragment->set($data); return $clone; } /** * {@inheritdoc} */ public function getFragment() { return clone $this->fragment; } }