Habari\XMLRPCClient::__get PHP Метод

__get() публичный Метод

Allow scoped functions to be called in shorthand Example: Create the XMLRPC object $rpc= new XMLRPCClient( 'http://rpc.pingomatic.com' ); Call weblogUpdates.ping RPC call $rpc->weblogUpdates->ping( 'Blog name', 'http://example.com' );
public __get ( string $scope ) : XMLRPCClient
$scope string The scope to set this object to.
Результат XMLRPCClient This object instance
    public function __get($scope)
    {
        $this->set_scope($scope);
        return $this;
    }