getConnectionHandler() public method

Returns a connection handler instance, creating it if it does not already exist and using a default class if none has been set.
public getConnectionHandler ( ) : Phergie_Connection_Handler
return Phergie_Connection_Handler
Beispiel #1
0
 /**
  * Gets the required class refences from Phergie_Bot.
  *
  * @param Phergie_Bot $bot     Current bot instance in use
  * @param array       $options Optional processor arguments
  *
  * @return void
  */
 public function __construct(Phergie_Bot $bot, array $options = array())
 {
     $this->driver = $bot->getDriver();
     $this->plugins = $bot->getPluginHandler();
     $this->connections = $bot->getConnectionHandler();
     $this->events = $bot->getEventHandler();
     $this->ui = $bot->getUi();
     $this->options = $options;
 }
Beispiel #2
0
 /**
  * Tests that a custom connection handler can be set.
  *
  * @return void
  */
 public function testSetConnectionHandler()
 {
     $connections = $this->getMockConnectionHandler();
     $this->bot->setConnectionHandler($connections);
     $this->assertSame($connections, $this->bot->getConnectionHandler());
 }