[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 declare(strict_types=1); 4 5 namespace ProxyManager\Factory\RemoteObject; 6 7 /** 8 * Remote Object adapter interface 9 * 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 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |