<?php
$d 
= new DbusDbus::BUS_SESSIONtrue );
$d->requestName'nl.derickrethans.test' );
$d->registerObject(
     
'/nl/derickrethans/test''nl.derickrethans.test''testClass' );

class 
testClass {
    static function 
echoOne$a ) {
        return 
$a;
    }
    static function 
echoTwo$a$b ) {
        return new 
DbusSet$a$b );
    }
}

do {
    
$s $d->waitLoop1000 );
} while ( 
true );
?>