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 |
DisabledMethodException.php
01 <?php
02
03 declare(strict_types=1);
04
05 namespace ProxyManager\Exception;
06
07 use BadMethodCallException;
08
09 /**
10 * Exception for forcefully disabled methods
11 *
12 * @author Marco Pivetta <ocramius@gmail.com>
13 * @license MIT
14 */
15 class DisabledMethodException extends BadMethodCallException implements ExceptionInterface
16 {
17 const NAME = __CLASS__;
18
19 public static function disabledMethod(string $method) : self
20 {
21 return new self(sprintf('Method "%s" is forcefully disabled', $method));
22 }
23 }
24