Skip to content

Commit b767567

Browse files
authored
Assign $output method parameter to $this->output on Generator (#1623)
The `$output` method parameter is not being assigned to the `$this->output` class variable.
1 parent edb5675 commit b767567

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Generator.php

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public function __construct(
5555
) {
5656
$this->config = $config;
5757
$this->view = $view;
58+
$this->output = $output;
5859

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

0 commit comments

Comments
 (0)