Assign $output method parameter to $this->output on Generator (#1623)

The `$output` method parameter is not being assigned to the `$this->output` class variable.
This commit is contained in:
Lito
2024-12-18 09:24:19 +01:00
committed by GitHub
parent edb56754d1
commit b7675670f7
+1
View File
@@ -55,6 +55,7 @@ class Generator
) {
$this->config = $config;
$this->view = $view;
$this->output = $output;
// Find the drivers to add to the extra/interfaces
$this->detectDrivers();