/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Http
NameSizeModeActions
Client/-0755rm
Cookie/-0755rm
Exception/-0755rm
Middleware/-0755rm
Session/-0755rm
TestSuite/-0755rm
BaseApplication.php93880644editdlrm
CallbackStream.php15750644editdlrm
Client.php256240644editdlrm
composer.json15090644editdlrm
ContentTypeNegotiation.php52730644editdlrm
ControllerFactory.php2300644editdlrm
ControllerFactoryInterface.php15340644editdlrm
CorsBuilder.php60250644editdlrm
FlashMessage.php68120644editdlrm
LICENSE.txt12040644editdlrm
MiddlewareApplication.php17910644editdlrm
MiddlewareQueue.php91130644editdlrm
README.md33920644editdlrm
Response.php512180644editdlrm
ResponseEmitter.php89400644editdlrm
Runner.php30640644editdlrm
Server.php55520644editdlrm
ServerRequest.php559690644editdlrm
ServerRequestFactory.php130810644editdlrm
Session.php209880644editdlrm
Uri.php50270644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Http/Uri.php (5027B)
uri = $uri; $this->base = $base; $this->webroot = $webroot; } /** * Backwards compatibility shim for previously dynamic properties. * * @param string $name The attribute to read. * @return mixed */ public function __get(string $name) { if ($name === 'base' || $name === 'webroot') { return $this->{$name}; } throw new UnexpectedValueException("Undefined property via __get('{$name}')"); } /** * Get the decorated URI * * @return \Psr\Http\Message\UriInterface */ public function getUri(): UriInterface { return $this->uri; } /** * Get the application base path. * * @return string */ public function getBase(): string { return $this->base; } /** * Get the application webroot path. * * @return string */ public function getWebroot(): string { return $this->webroot; } /** * @inheritDoc */ public function getScheme() { return $this->uri->getScheme(); } /** * @inheritDoc */ public function getAuthority() { return $this->uri->getAuthority(); } /** * @inheritDoc */ public function getUserInfo() { return $this->uri->getUserInfo(); } /** * @inheritDoc */ public function getHost() { return $this->uri->getHost(); } /** * @inheritDoc */ public function getPort() { return $this->uri->getPort(); } /** * @inheritDoc */ public function getPath() { return $this->uri->getPath(); } /** * @inheritDoc */ public function getQuery() { return $this->uri->getQuery(); } /** * @inheritDoc */ public function getFragment() { return $this->uri->getFragment(); } /** * @inheritDoc */ public function withScheme($scheme) { $new = clone $this; $new->uri = $this->uri->withScheme($scheme); return $new; } /** * @inheritDoc */ public function withUserInfo($user, $password = null) { $new = clone $this; $new->uri = $this->uri->withUserInfo($user, $password); return $new; } /** * @inheritDoc */ public function withHost($host) { $new = clone $this; $new->uri = $this->uri->withHost($host); return $new; } /** * @inheritDoc */ public function withPort($port) { $new = clone $this; $new->uri = $this->uri->withPort($port); return $new; } /** * @inheritDoc */ public function withPath($path) { $new = clone $this; $new->uri = $this->uri->withPath($path); return $new; } /** * @inheritDoc */ public function withQuery($query) { $new = clone $this; $new->uri = $this->uri->withQuery($query); return $new; } /** * @inheritDoc */ public function withFragment($fragment) { $new = clone $this; $new->uri = $this->uri->withFragment($fragment); return $new; } /** * @inheritDoc */ public function __toString() { return $this->uri->__toString(); } }