Differences Between: [Versions 310 and 402] [Versions 311 and 402] [Versions 400 and 402] [Versions 401 and 402]
1 <?php 2 3 declare(strict_types=1); 4 5 namespace ZipStream; 6 7 /** 8 * @deprecated 9 */ 10 class DeflateStream extends Stream 11 { 12 public function __construct($stream) 13 { 14 parent::__construct($stream); 15 trigger_error('Class ' . __CLASS__ . ' is deprecated, delation will be handled internally instead', E_USER_DEPRECATED); 16 } 17 18 public function removeDeflateFilter(): void 19 { 20 trigger_error('Method ' . __METHOD__ . ' is deprecated', E_USER_DEPRECATED); 21 } 22 23 public function addDeflateFilter(Option\File $options): void 24 { 25 trigger_error('Method ' . __METHOD__ . ' is deprecated', E_USER_DEPRECATED); 26 } 27 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body