Skip to content

Commit 2ce78bb

Browse files
Remove superfluous parent method calls
1 parent e64a9dd commit 2ce78bb

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/end-to-end/regression/2724/SeparateClassRunMethodInNewProcessTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,13 @@ class SeparateClassRunMethodInNewProcessTest extends PHPUnit\Framework\TestCase
2323

2424
public static function setUpBeforeClass(): void
2525
{
26-
parent::setUpBeforeClass();
27-
2826
if (\file_exists(self::PROCESS_ID_FILE_PATH)) {
2927
static::$masterPid = (int) \file_get_contents(self::PROCESS_ID_FILE_PATH);
3028
}
3129
}
3230

3331
public static function tearDownAfterClass(): void
3432
{
35-
parent::tearDownAfterClass();
36-
3733
if (\file_exists(self::PROCESS_ID_FILE_PATH)) {
3834
\unlink(self::PROCESS_ID_FILE_PATH);
3935
}

0 commit comments

Comments
 (0)