Skip to content

Commit 39762de

Browse files
authored
Move table fallback to Bake
1 parent 98d5cde commit 39762de

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/Application.php

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,11 @@ public function bootstrap(): void
4848
// Call parent to load bootstrap from files.
4949
parent::bootstrap();
5050

51-
if (PHP_SAPI !== 'cli') {
52-
FactoryLocator::add(
53-
'Table',
54-
(new TableLocator())->allowFallbackClass(false),
55-
);
56-
}
51+
// Use if you need fallback tables
52+
//FactoryLocator::add(
53+
// 'Table',
54+
// (new TableLocator())->allowFallbackClass(false),
55+
//);
5756
}
5857

5958
/**

0 commit comments

Comments
 (0)