[22:29:41] hashar: I see MW_QUIBBLE_CI was introduced as PHP defined constant in LS and as ENV later. The docs say that the constant is recommended in PHP code, I wonder why? The env seems more portable as it works everywhere. [22:30:09] In particular, the constant does not work in early Setup code, and does not work in "pure" unit tests via composer phpunit which don't load LocalSettings.php [22:30:29] It seems simpler to recommend `if ( getenv( 'MW_QUIBBLE_CI' ) )` than `if ( defined( 'MW_QUIBBLE_CI' ) )` [22:30:35] Curious what you think :)