ILIAS  trunk Revision v12.0_alpha-1227-g7ff6d300864
class.ilRpcClientFactory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
25{
30 public static function factory(string $package, int $timeout = 0): ilRpcClient
31 {
32 return new ilRpcClient(
33 ilRPCServerSettings::getInstance()->getServerUrl(),
34 $package . '.',
35 $timeout
36 );
37 }
38}
static factory(string $package, int $timeout=0)