getTransformers() public method

public getTransformers ( ) : Collection | null
return MessagePack\TypeTransformer\Collection | null
 public function testSetGetTransformers()
 {
     $coll = $this->getTransformerCollectionMock();
     $this->assertNull($this->unpacker->getTransformers());
     $this->unpacker->setTransformers($coll);
     $this->assertSame($coll, $this->unpacker->getTransformers());
 }