ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
ZIPStream.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Filesystem\Stream;
22 
24 
28 class ZIPStream extends Stream
29 {
30  public function seek($offset, $whence = SEEK_SET): void
31  {
32  // zip streams are not seekable
33  }
34 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: FileStream.php:19
seek($offset, $whence=SEEK_SET)
Definition: ZIPStream.php:30