hasCompression() public method

public hasCompression ( ) : boolean
return boolean
Example #1
0
 /**
  * @group unit
  */
 public function testCompression()
 {
     $connection = new Connection();
     $this->assertFalse($connection->hasCompression());
     $connection->setCompression(true);
     $this->assertTrue($connection->hasCompression());
 }