Example #1
0
 /**
  * Tells current Stream to skip given amount of bits.
  *
  * @param AbstractStream $stream Stream which which should skip data.
  * @return null To detect that no value has been read.
  */
 public function read(AbstractStream $stream)
 {
     $stream->skip($this->getSize());
     return null;
 }