From b7675670f75914bf34afdea52a6c2fe3781f7c44 Mon Sep 17 00:00:00 2001 From: Lito Date: Wed, 18 Dec 2024 09:24:19 +0100 Subject: [PATCH] Assign $output method parameter to $this->output on Generator (#1623) The `$output` method parameter is not being assigned to the `$this->output` class variable. --- src/Generator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Generator.php b/src/Generator.php index 1fcdbba..6d1a3bd 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -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();