Skip to content

Commit

Permalink
fix: define compression supported
Browse files Browse the repository at this point in the history
  • Loading branch information
loks0n committed Nov 1, 2024
1 parent 9112676 commit a501a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class App
*/
protected bool $compression = false;
protected int $compressionMinSize = App::COMPRESSION_MIN_SIZE_DEFAULT;
protected mixed $compressionSupported;
protected mixed $compressionSupported = [];

/**
* App
Expand Down
2 changes: 1 addition & 1 deletion src/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ class Response
/**
* @var mixed
*/
protected mixed $compressionSupported;
protected mixed $compressionSupported = [];

/**
* Response constructor.
Expand Down

0 comments on commit a501a56

Please sign in to comment.