Skip to content

Commit ec25272

Browse files
authored
Fix PHP 8.4 deprecation warning
1 parent 4862485 commit ec25272

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Generator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ class Generator
4242
/**
4343
* @param \Illuminate\Config\Repository $config
4444
* @param \Illuminate\View\Factory $view
45-
* @param OutputInterface $output
45+
* @param ?OutputInterface $output
4646
* @param string $helpers
4747
*/
4848
public function __construct(
4949
/*ConfigRepository */
5050
$config,
5151
/* Illuminate\View\Factory */
5252
$view,
53-
OutputInterface $output = null,
53+
?OutputInterface $output = null,
5454
$helpers = ''
5555
) {
5656
$this->config = $config;

0 commit comments

Comments
 (0)