Пример #1
0
 /**
  * @param StreamInterface $stream
  * @param int             $level
  */
 public function __construct(StreamInterface $stream, $level = -1)
 {
     if (!extension_loaded('zlib')) {
         throw new \RuntimeException('The zlib extension must be enabled to use this stream');
     }
     parent::__construct($stream, ['window' => -15], ['window' => -15, 'level' => $level]);
 }
Пример #2
0
 /**
  * @param StreamInterface $stream
  * @param int             $level
  */
 public function __construct(StreamInterface $stream, $level = -1)
 {
     parent::__construct($stream, ['window' => -15, 'level' => $level], ['window' => -15]);
 }