Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
InvalidProxyDirectoryException.php
01 <?php
02
03 declare(strict_types=1);
04
05 namespace ProxyManager\Exception;
06
07 use InvalidArgumentException;
08
09 /**
10 * Exception for invalid directories
11 *
12 * @author Marco Pivetta <ocramius@gmail.com>
13 * @license MIT
14 */
15 class InvalidProxyDirectoryException extends InvalidArgumentException implements ExceptionInterface
16 {
17 public static function proxyDirectoryNotFound(string $directory) : self
18 {
19 return new self(sprintf('Provided directory "%s" does not exist', $directory));
20 }
21 }
22