Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bootstrap - Switch default boot process. Update docs. #145

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ Bootstrap
less representative of a typical HTTP page-view, and it is incompatible with commands like `core:install`. You might use it
for headless testing or as fallback/work-around if any bugs are discovered in the standard protocol.)

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

Build
=====
Expand Down
3 changes: 1 addition & 2 deletions src/Util/BootTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ public function boot(InputInterface $input, OutputInterface $output) {
$input->setOption('level', 'full');
}
else {
$input->setOption('level', 'full');
// TODO (when tests pass, for v0.4): $input->setOption('level', 'cms-full');
$input->setOption('level', 'cms-full');
}
}

Expand Down