Skip to content

Commit

Permalink
Assign $output method parameter to $this->output on Generator (#1623)
Browse files Browse the repository at this point in the history
The `$output` method parameter is not being assigned to the `$this->output` class variable.
  • Loading branch information
eusonlito authored Dec 18, 2024
1 parent edb5675 commit b767567
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public function __construct(
) {
$this->config = $config;
$this->view = $view;
$this->output = $output;

// Find the drivers to add to the extra/interfaces
$this->detectDrivers();
Expand Down

0 comments on commit b767567

Please sign in to comment.