Skip to content

Commit 05ce6a1

Browse files
committed
Add is_command_line and use it.
1 parent 87b10b3 commit 05ce6a1

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

phpunit.xml.dist

+3
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@
1111
<directory prefix="test_" suffix=".php">./tests/phpunit/</directory>
1212
</testsuite>
1313
</testsuites>
14+
<php>
15+
<const name="PHPUNIT_TEST" value="1" />
16+
</php>
1417
</phpunit>

src/wpephpcompat.php

+14-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public function start_test() {
134134

135135
wp_schedule_single_event( time() + ( MINUTE_IN_SECONDS ), 'wpephpcompat_start_test_cron' );
136136

137-
if ( ! defined( 'WP_CLI' ) ) {
137+
if ( ! $this->is_command_line() ) {
138138
// Close the connection to the browser.
139139
ignore_user_abort(true);
140140

@@ -358,7 +358,7 @@ private function add_directory( $name, $path ) {
358358
* @return null
359359
*/
360360
private function debug_log( $message ){
361-
if ( defined( 'WP_DEBUG' ) && WP_DEBUG === true && ! defined( 'WP_CLI' ) ) {
361+
if ( defined( 'WP_DEBUG' ) && WP_DEBUG === true && ! $this->is_command_line() ) {
362362
if ( is_array( $message ) || is_object( $message ) ) {
363363
error_log( print_r( $message , true ) );
364364
}
@@ -367,4 +367,16 @@ private function debug_log( $message ){
367367
}
368368
}
369369
}
370+
371+
/**
372+
* Are we running on the command line?
373+
*
374+
* @since 1.0.0
375+
* @return boolean Returns true if the request came from the command line.
376+
*/
377+
private function is_command_line()
378+
{
379+
return defined( 'WP_CLI' ) || defined( 'PHPUNIT_TEST' );
380+
}
381+
370382
}

0 commit comments

Comments
 (0)