Merge pull request #4278 from oleibman/ignorecoverage

Ignore Coverage for SimpleCache1, ZipStream2
This commit is contained in:
oleibman
2024-12-15 18:09:23 +00:00
committed by GitHub
2 changed files with 11 additions and 0 deletions
@@ -9,6 +9,11 @@ use Psr\SimpleCache\CacheInterface;
*
* Alternative implementation should leverage off-memory, non-volatile storage
* to reduce overall memory usage.
*
* Either SimpleCache1 or SimpleCache3, but not both, may be used.
* For code coverage testing, it will always be SimpleCache3.
*
* @codeCoverageIgnore
*/
class SimpleCache1 implements CacheInterface
{
+6
View File
@@ -5,6 +5,12 @@ namespace PhpOffice\PhpSpreadsheet\Writer;
use ZipStream\Option\Archive;
use ZipStream\ZipStream;
/**
* Either ZipStream2 or ZipStream3, but not both, may be used.
* For code coverage testing, it will always be ZipStream3.
*
* @codeCoverageIgnore
*/
class ZipStream2
{
/**