From e1d344e5c32c482033a7cc3939c23edd44dca592 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Tue, 8 Jul 2025 15:59:09 +0200 Subject: [PATCH] small cleanup --- src/Application.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Application.php b/src/Application.php index 29251ba07..e56d81801 100644 --- a/src/Application.php +++ b/src/Application.php @@ -49,10 +49,8 @@ public function bootstrap(): void parent::bootstrap(); if (PHP_SAPI !== 'cli') { - FactoryLocator::add( - 'Table', - (new TableLocator())->allowFallbackClass(false), - ); + // The bake plugin requires fallback table classes to work properly + FactoryLocator::add('Table', (new TableLocator())->allowFallbackClass(false)); } }