getRaw() public method

public getRaw ( ) : mixed
return mixed
 /**
  * {@inheritdoc}
  */
 public function sanitize(Test $test)
 {
     if ($test->getRaw() !== \msgpack_unpack($test->getPacked())) {
         throw new \UnexpectedValueException('$raw !== msgpack_unpack($packed)');
     }
 }
示例#2
0
 /**
  * {@inheritdoc}
  */
 public function calibrate(Test $test)
 {
     $test->getRaw();
 }