Closed borkweb closed 2 years ago
This fixes #140 by moving the WP_DEBUG define after the output from {extra_php} and wrapping it in a conditional. This avoids the Notice: Constant WP_DEBUG already defined that gets thrown when define( 'WP_DEBUG', ... ); is provided via --extra-php.
WP_DEBUG
{extra_php}
Notice: Constant WP_DEBUG already defined
define( 'WP_DEBUG', ... );
--extra-php
This fixes #140 by moving the
WP_DEBUG
define after the output from{extra_php}
and wrapping it in a conditional. This avoids theNotice: Constant WP_DEBUG already defined
that gets thrown whendefine( 'WP_DEBUG', ... );
is provided via--extra-php
.