예제 #1
0
 public function testReset()
 {
     $client = new Client();
     $client->notify('subtract', array(3, 2));
     $client->encode();
     $this->compare($client, null);
 }
예제 #2
0
 public function notify($method, $arguments = null)
 {
     $this->client->notify($method, $arguments);
 }