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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

UnsupportedProxiedClassException.php

Zuletzt modifiziert: 02.04.2025, 15:03 - Dateigröße: 718.00 Bytes


01  <?php
02   
03  declare(strict_types=1);
04   
05  namespace ProxyManager\Exception;
06   
07  use LogicException;
08  use ReflectionProperty;
09   
10  /**
11   * Exception for invalid proxied classes
12   *
13   * @author Marco Pivetta <ocramius@gmail.com>
14   * @license MIT
15   */
16  class UnsupportedProxiedClassException extends LogicException implements ExceptionInterface
17  {
18      public static function unsupportedLocalizedReflectionProperty(ReflectionProperty $property) : self
19      {
20          return new self(
21              sprintf(
22                  'Provided reflection property "%s" of class "%s" is private and cannot be localized in PHP 5.3',
23                  $property->getName(),
24                  $property->getDeclaringClass()->getName()
25              )
26          );
27      }
28  }
29