Ejemplo n.º 1
0
 /**
  * Reads the table from the given stream.
  *
  * @param StreamInterface $stream The stream to read from.
  */
 public function read(StreamInterface $stream)
 {
     $this->version = $stream->readFixed();
     $this->scriptList = $stream->readOffset();
     $this->featureList = $stream->readOffset();
     $this->lookupList = $stream->readOffset();
 }