MessagePack\Tests\Perf\Test::getRaw PHP Method

getRaw() public method

public getRaw ( ) : mixed
return mixed
    public function getRaw()
    {
        return $this->raw;
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 public function sanitize(Test $test)
 {
     if ($test->getRaw() !== \msgpack_unpack($test->getPacked())) {
         throw new \UnexpectedValueException('$raw !== msgpack_unpack($packed)');
     }
 }
All Usage Examples Of MessagePack\Tests\Perf\Test::getRaw