Skip to content

Commit 8347711

Browse files
committed
minor: fix return type
1 parent 24f5a50 commit 8347711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BinaryFileResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function getFile(): File
107107
*
108108
* @return $this
109109
*/
110-
public function setChunkSize(int $chunkSize): self
110+
public function setChunkSize(int $chunkSize): static
111111
{
112112
if ($chunkSize < 1 || $chunkSize > \PHP_INT_MAX) {
113113
throw new \LogicException('The chunk size of a BinaryFileResponse cannot be less than 1 or greater than PHP_INT_MAX.');

0 commit comments

Comments
 (0)