Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore Coverage for SimpleCache1, ZipStream2 #4278

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/PhpSpreadsheet/Collection/Memory/SimpleCache1.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
*
* 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
{
Expand Down
6 changes: 6 additions & 0 deletions src/PhpSpreadsheet/Writer/ZipStream2.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
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
{
/**
Expand Down
Loading