10000 Fix FlattenException::setPrevious argument typing · symfony/symfony@326756e · GitHub
[go: up one dir, main page]

Skip to content

Commit 326756e

Browse files
committed
Fix FlattenException::setPrevious argument typing
1 parent ae71116 commit 326756e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/ErrorHandler/Exception/FlattenException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public function getPrevious(): ?self
261261
/**
262262
* @return $this
263263
*/
264-
public function setPrevious(self $previous): self
264+
public function setPrevious(?self $previous): self
265265
{
266266
$this->previous = $previous;
267267

0 commit comments

Comments
 (0)
0