Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function isSeekable()
 {
     return $this->stream->isSeekable();
 }
Пример #2
0
 /**
  * {@inheritdoc}
  */
 public function isSeekable()
 {
     $this->initialize();
     return $this->stream !== null ? $this->stream->isSeekable() : false;
 }