File manager - Edit - /home/autoph/public_html/projects/api/vendor/pecee/simple-router/src/Pecee/SimpleRouter/Route/IGroupRoute.php
Back
<?php namespace Pecee\SimpleRouter\Route; use Pecee\Http\Request; use Pecee\SimpleRouter\Handlers\IExceptionHandler; interface IGroupRoute extends IRoute { /** * Method called to check if a domain matches * * @param Request $request * @return bool */ public function matchDomain(Request $request): bool; /** * Add exception handler * * @param IExceptionHandler|string $handler * @return static */ public function addExceptionHandler($handler): self; /** * Set exception-handlers for group * * @param array $handlers * @return static */ public function setExceptionHandlers(array $handlers): self; /** * Returns true if group should overwrite existing exception-handlers. * * @return bool */ public function getMergeExceptionHandlers(): bool; /** * When enabled group will overwrite any existing exception-handlers. * * @param bool $merge * @return static */ public function setMergeExceptionHandlers(bool $merge): self; /** * Get exception-handlers for group * * @return array */ public function getExceptionHandlers(): array; /** * Get domains for domain. * * @return array */ public function getDomains(): array; /** * Set allowed domains for group. * * @param array $domains * @return static */ public function setDomains(array $domains): self; /** * Prepends prefix while ensuring that the url has the correct formatting. * * @param string $url * @return static */ public function prependPrefix(string $url): self; /** * Set prefix that child-routes will inherit. * * @param string $prefix * @return static */ public function setPrefix(string $prefix): self; /** * Get prefix. * * @return string|null */ public function getPrefix(): ?string; }
| ver. 1.4 |
.
| PHP 8.0.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings