The following code triggers a "Use of constant E_STRICT is deprecated" error despite it being guarded by a PHP version check: ```php if ( version_compare( PHP_VERSION, '8.4', '<' ) && E_STRICT === $errno ) { // ... } ```