/**
  * Instantiate a new handler for the given client.
  *
  * @param Errbit $errbit the client to use
  *
  * @return null
  *
  */
 public function __construct($errbit, $handlers)
 {
     $this->errbit = $errbit;
     $this->install($handlers);
     $this->converter = Converter::createDefault();
 }
 public function setUp()
 {
     $this->object = Converter::createDefault();
 }