Skip to content

Commit

Permalink
Remove superfluous parent method calls
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Sep 16, 2023
1 parent e64a9dd commit 2ce78bb
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,13 @@ class SeparateClassRunMethodInNewProcessTest extends PHPUnit\Framework\TestCase

public static function setUpBeforeClass(): void
{
parent::setUpBeforeClass();

if (\file_exists(self::PROCESS_ID_FILE_PATH)) {
static::$masterPid = (int) \file_get_contents(self::PROCESS_ID_FILE_PATH);
}
}

public static function tearDownAfterClass(): void
{
parent::tearDownAfterClass();

if (\file_exists(self::PROCESS_ID_FILE_PATH)) {
\unlink(self::PROCESS_ID_FILE_PATH);
}
Expand Down

0 comments on commit 2ce78bb

Please sign in to comment.