unpack() public method

public unpack ( ) : mixed
return mixed
 public function testBadKeyTypeIsIgnored()
 {
     $this->unpacker->reset("��");
     // [[1, 2] => 0, 4 => 2]
     $raw = @$this->unpacker->unpack();
     $this->assertSame([4 => 2], $raw);
 }