Skip to content

Commit

Permalink
updated - class method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveJonesDev committed Feb 22, 2024
1 parent d899c5d commit 856d7a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/phpunit/test-summary-generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class EDACSummaryGeneratorTest extends WP_UnitTestCase {
*
* @return void
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->post_id = self::factory()->post->create();
$this->summary_generator = new Summary_Generator( $this->post_id );
Expand All @@ -42,7 +42,7 @@ public function setUp() {
*
* @return void
*/
public function tearDown() {
public function tearDown(): void {
parent::tearDown();
wp_delete_post( $this->post_id, true );
}
Expand Down

0 comments on commit 856d7a3

Please sign in to comment.