setTickInterval() public method

Sets the interval in seconds between irc.tick events.
public setTickInterval ( float $tickInterval )
$tickInterval float
 /**
  * Tests setTickInterval().
  */
 public function testSetTickInterval()
 {
     $tickInterval = 0.5;
     $this->client->setTickInterval($tickInterval);
     $this->assertSame($tickInterval, $this->client->getTickInterval());
 }