Skip to content

Commit 5803b79

Browse files
committed
Change default boot driver from Bootstrap.php to CmsBootstrap.php
1 parent f204f7a commit 5803b79

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ Bootstrap
171171
less representative of a typical HTTP page-view, and it is incompatible with commands like `core:install`. You might use it
172172
for headless testing or as fallback/work-around if any bugs are discovered in the standard protocol.)
173173

174-
> ___NOTE___: In absence of a configuration variable, the __Automatic__ mode will behave like `CIVICRM_SETTINGS="Auto"` (in v0.3.x).
175-
This is tentatively planned to change in v0.4.x, where it will behave like `CIVICRM_BOOT="Auto://."`
174+
> ___NOTE___: In absence of a configuration variable, the __Automatic__ mode specifically behaves like `CIVICRM_BOOT="Auto://."` (in v0.4.x
175+
> and later). This is a change from v0.3.x, where the default behaved like `CIVICRM_SETTINGS="Auto"`.
176176

177177
Build
178178
=====

src/Util/BootTrait.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ public function boot(InputInterface $input, OutputInterface $output) {
4343
$input->setOption('level', 'full');
4444
}
4545
else {
46-
$input->setOption('level', 'full');
47-
// TODO (when tests pass, for v0.4): $input->setOption('level', 'cms-full');
46+
$input->setOption('level', 'cms-full');
4847
}
4948
}
5049

0 commit comments

Comments
 (0)