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 |
SignatureCheckerInterface.php
01 <?php
02
03 declare(strict_types=1);
04
05 namespace ProxyManager\Signature;
06
07 use ReflectionClass;
08
09 /**
10 * Generator for signatures to be used to check the validity of generated code
11 *
12 * @author Marco Pivetta <ocramius@gmail.com>
13 * @license MIT
14 */
15 interface SignatureCheckerInterface
16 {
17 /**
18 * Checks whether the given signature is valid or not
19 *
20 * @return void
21 *
22 * @throws \ProxyManager\Signature\Exception\InvalidSignatureException
23 * @throws \ProxyManager\Signature\Exception\MissingSignatureException
24 */
25 public function checkSignature(ReflectionClass $class, array $parameters);
26 }
27