From 15ac3573b18957410c40c79299e7be6093ed6d8d Mon Sep 17 00:00:00 2001 From: Benni Ledl Date: Wed, 10 Jan 2024 10:51:03 +0100 Subject: [PATCH] fix coding standards --- tests/phpunit/tests/filesystem/wpMkdirP.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/phpunit/tests/filesystem/wpMkdirP.php b/tests/phpunit/tests/filesystem/wpMkdirP.php index d50f54598d5aa..e26e17dbb65d1 100644 --- a/tests/phpunit/tests/filesystem/wpMkdirP.php +++ b/tests/phpunit/tests/filesystem/wpMkdirP.php @@ -180,11 +180,11 @@ public function test_wp_mkdir_p_should_fire_the_create_directory_failed_action_w add_action( 'before_create_directory', - function( $target ) { + function ( $target ) { /* - * Force a failure by creating a file of the same name - * just before `mkdir()` runs. - */ + * Force a failure by creating a file of the same name + * just before `mkdir()` runs. + */ $this->touch( $target ); } );