From ab43c31ff588fe1f0e02155bfe2af0c7a359ca00 Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov Date: Wed, 6 Jan 2021 22:16:26 -0500 Subject: [PATCH] Add @inheritDoc to all setUp and tearDown methods --- php-packages/testing/tests/integration/TestCase.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/php-packages/testing/tests/integration/TestCase.php b/php-packages/testing/tests/integration/TestCase.php index 5c8c5526c..1bf515a41 100644 --- a/php-packages/testing/tests/integration/TestCase.php +++ b/php-packages/testing/tests/integration/TestCase.php @@ -23,6 +23,9 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase { use BuildsHttpRequests; + /** + * @inheritDoc + */ protected function tearDown(): void { parent::tearDown();