File manager - Edit - /home/autoph/public_html/projects/api/vendor/pecee/simple-router/src/Pecee/SimpleRouter/Exceptions/ClassNotFoundHttpException.php
Back
<?php namespace Pecee\SimpleRouter\Exceptions; use Throwable; class ClassNotFoundHttpException extends NotFoundHttpException { /** * @var string */ protected $class; /** * @var string|null */ protected $method; public function __construct(string $class, ?string $method = null, string $message = "", int $code = 0, Throwable $previous = null) { parent::__construct($message, $code, $previous); $this->class = $class; $this->method = $method; } /** * Get class name * @return string */ public function getClass(): string { return $this->class; } /** * Get method * @return string|null */ public function getMethod(): ?string { return $this->method; } }
| ver. 1.4 |
.
| PHP 8.0.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings