Skip to content

Commit

Permalink
Fix PHP 8.4 deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
eusonlito authored Nov 29, 2024
1 parent 4862485 commit ec25272
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ class Generator
/**
* @param \Illuminate\Config\Repository $config
* @param \Illuminate\View\Factory $view
* @param OutputInterface $output
* @param ?OutputInterface $output
* @param string $helpers
*/
public function __construct(
/*ConfigRepository */
$config,
/* Illuminate\View\Factory */
$view,
OutputInterface $output = null,
?OutputInterface $output = null,
$helpers = ''
) {
$this->config = $config;
Expand Down

0 comments on commit ec25272

Please sign in to comment.