Skip to content

Commit 3f0e237

Browse files
author
Paul Bearne
committed
Fix whitespace issue in PHPUnit setUp method
Removed an unnecessary space in the setUp method declaration within the PHPUnit test for WpNaturalTime. This ensures consistency in code formatting and adheres to PSR-12 coding standards.
1 parent c6dc9c6 commit 3f0e237

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/phpunit/tests/formatting/WpNaturalTime/WpNaturalTime.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Tests_Formatting_WpNaturalTime extends WP_UnitTestCase {
2020
*
2121
* @return void
2222
*/
23-
public function setUp(): void {
23+
public function setUp(): void {
2424
parent::setUp();
2525
$this->ts = array(
2626
'now' => gmmktime( 10, 0, 0, 7, 1, 2015 ),

0 commit comments

Comments
 (0)