From f0804b265e18408a56638e2e0b928f7e997d1ebb Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 13 Dec 2023 07:36:22 +0000 Subject: [PATCH] Fatal error when generating filters --- bin/generate-filters.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bin/generate-filters.php b/bin/generate-filters.php index e1c53f8..a964aa4 100755 --- a/bin/generate-filters.php +++ b/bin/generate-filters.php @@ -1,7 +1,6 @@ get(Application::class); +$application = new Application(); +$application->add(new GenerateCommand()); $application->setDefaultCommand(GenerateCommand::getDefaultName()); $application->run();