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 |
AdapterInterface.php
01 <?php
02
03 declare(strict_types=1);
04
05 namespace ProxyManager\Factory\RemoteObject;
06
07 /**
08 * Remote Object adapter interface
09 *
10 * @author Vincent Blanchon <blanchon.vincent@gmail.com>
11 * @license MIT
12 */
13 interface AdapterInterface
14 {
15 /**
16 * Call remote object
17 *
18 * @param string $wrappedClass
19 * @param string $method
20 * @param array $params
21 */
22 public function call(string $wrappedClass, string $method, array $params = []);
23 }
24