MyQEE\Server\RPC::factory PHP Method

factory() public static method

public static factory ( $fd, null $fromId = null ) : static
$fd
$fromId null
return static
    public static function factory($fd, $fromId = null)
    {
        $class = static::class;
        $obj = new $class($fd, $fromId);
        return $obj;
    }