php - Boolean value read as string in CakePHP 4 config

one text

Solution:

As mentioned in the comments, the config was indeed being rewritten after it was initially read from config/app.php, and a non-boolean value was being set for the 'debug' key.

Source