diff --git a/framework/core/tests/integration/TestCase.php b/framework/core/tests/integration/TestCase.php index 5c8c5526c..1bf515a41 100644 --- a/framework/core/tests/integration/TestCase.php +++ b/framework/core/tests/integration/TestCase.php @@ -23,6 +23,9 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase { use BuildsHttpRequests; + /** + * @inheritDoc + */ protected function tearDown(): void { parent::tearDown(); diff --git a/framework/core/tests/integration/api/authentication/WithApiKeyTest.php b/framework/core/tests/integration/api/authentication/WithApiKeyTest.php index 180a4d630..a61303e14 100644 --- a/framework/core/tests/integration/api/authentication/WithApiKeyTest.php +++ b/framework/core/tests/integration/api/authentication/WithApiKeyTest.php @@ -19,6 +19,9 @@ class WithApiKeyTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/authentication/WithTokenTest.php b/framework/core/tests/integration/api/authentication/WithTokenTest.php index 4405076ea..79d7b0014 100644 --- a/framework/core/tests/integration/api/authentication/WithTokenTest.php +++ b/framework/core/tests/integration/api/authentication/WithTokenTest.php @@ -17,6 +17,9 @@ class WithTokenTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/csrf_protection/RequireCsrfTokenTest.php b/framework/core/tests/integration/api/csrf_protection/RequireCsrfTokenTest.php index 965aeeef9..152bcf4a6 100644 --- a/framework/core/tests/integration/api/csrf_protection/RequireCsrfTokenTest.php +++ b/framework/core/tests/integration/api/csrf_protection/RequireCsrfTokenTest.php @@ -16,6 +16,9 @@ class RequireCsrfTokenTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/discussions/DeletionTest.php b/framework/core/tests/integration/api/discussions/DeletionTest.php index ea825fd9b..f81922ab6 100644 --- a/framework/core/tests/integration/api/discussions/DeletionTest.php +++ b/framework/core/tests/integration/api/discussions/DeletionTest.php @@ -17,6 +17,9 @@ class DeletionTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/discussions/ListTest.php b/framework/core/tests/integration/api/discussions/ListTest.php index b47bbe127..d09ea5afa 100644 --- a/framework/core/tests/integration/api/discussions/ListTest.php +++ b/framework/core/tests/integration/api/discussions/ListTest.php @@ -17,6 +17,9 @@ class ListTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/discussions/ShowTest.php b/framework/core/tests/integration/api/discussions/ShowTest.php index 79d036c16..cf6f82ca5 100644 --- a/framework/core/tests/integration/api/discussions/ShowTest.php +++ b/framework/core/tests/integration/api/discussions/ShowTest.php @@ -20,6 +20,9 @@ class ShowTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/forum/ShowTest.php b/framework/core/tests/integration/api/forum/ShowTest.php index 7ff520712..7bb072f10 100644 --- a/framework/core/tests/integration/api/forum/ShowTest.php +++ b/framework/core/tests/integration/api/forum/ShowTest.php @@ -17,6 +17,9 @@ class ShowTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/groups/CreateTest.php b/framework/core/tests/integration/api/groups/CreateTest.php index ba4b43303..a92e33877 100644 --- a/framework/core/tests/integration/api/groups/CreateTest.php +++ b/framework/core/tests/integration/api/groups/CreateTest.php @@ -18,6 +18,9 @@ class CreateTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/groups/ListTest.php b/framework/core/tests/integration/api/groups/ListTest.php index 9cef5476f..0b1f7bf74 100644 --- a/framework/core/tests/integration/api/groups/ListTest.php +++ b/framework/core/tests/integration/api/groups/ListTest.php @@ -17,6 +17,9 @@ class ListTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/notifications/ListTest.php b/framework/core/tests/integration/api/notifications/ListTest.php index a33a756de..8a0a0a563 100644 --- a/framework/core/tests/integration/api/notifications/ListTest.php +++ b/framework/core/tests/integration/api/notifications/ListTest.php @@ -16,6 +16,9 @@ class ListTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/posts/CreateTest.php b/framework/core/tests/integration/api/posts/CreateTest.php index cc023677c..d1a57151d 100644 --- a/framework/core/tests/integration/api/posts/CreateTest.php +++ b/framework/core/tests/integration/api/posts/CreateTest.php @@ -17,6 +17,9 @@ class CreateTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/users/CreateTest.php b/framework/core/tests/integration/api/users/CreateTest.php index 6e1d6d023..c3eb38ace 100644 --- a/framework/core/tests/integration/api/users/CreateTest.php +++ b/framework/core/tests/integration/api/users/CreateTest.php @@ -18,6 +18,9 @@ class CreateTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/users/ShowTest.php b/framework/core/tests/integration/api/users/ShowTest.php index 3fb0e7bd2..fc7557ee8 100644 --- a/framework/core/tests/integration/api/users/ShowTest.php +++ b/framework/core/tests/integration/api/users/ShowTest.php @@ -16,6 +16,9 @@ class ShowTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/integration/api/users/UpdateTest.php b/framework/core/tests/integration/api/users/UpdateTest.php index be6b397dd..280554b81 100644 --- a/framework/core/tests/integration/api/users/UpdateTest.php +++ b/framework/core/tests/integration/api/users/UpdateTest.php @@ -16,6 +16,9 @@ class UpdateTest extends TestCase { use RetrievesAuthorizedUsers; + /** + * @inheritDoc + */ protected function setUp(): void { parent::setUp(); diff --git a/framework/core/tests/unit/Foundation/ContainerUtilTest.php b/framework/core/tests/unit/Foundation/ContainerUtilTest.php index f7b8a2992..d90764f3b 100644 --- a/framework/core/tests/unit/Foundation/ContainerUtilTest.php +++ b/framework/core/tests/unit/Foundation/ContainerUtilTest.php @@ -17,6 +17,9 @@ class ContainerUtilTest extends TestCase { private $container; + /** + * @inheritDoc + */ protected function setUp() { parent::setUp(); diff --git a/framework/core/tests/unit/Foundation/ErrorHandling/ExceptionHandler/IlluminateValidationExceptionHandlerTest.php b/framework/core/tests/unit/Foundation/ErrorHandling/ExceptionHandler/IlluminateValidationExceptionHandlerTest.php index 0bf6d4441..b3c3273c2 100644 --- a/framework/core/tests/unit/Foundation/ErrorHandling/ExceptionHandler/IlluminateValidationExceptionHandlerTest.php +++ b/framework/core/tests/unit/Foundation/ErrorHandling/ExceptionHandler/IlluminateValidationExceptionHandlerTest.php @@ -20,6 +20,9 @@ class IlluminateValidationExceptionHandlerTest extends TestCase { private $handler; + /** + * @inheritDoc + */ protected function setUp(): void { $this->handler = new IlluminateValidationExceptionHandler; diff --git a/framework/core/tests/unit/Foundation/ErrorHandling/ExceptionHandler/ValidationExceptionHandlerTest.php b/framework/core/tests/unit/Foundation/ErrorHandling/ExceptionHandler/ValidationExceptionHandlerTest.php index edb4c0892..aa8df566f 100644 --- a/framework/core/tests/unit/Foundation/ErrorHandling/ExceptionHandler/ValidationExceptionHandlerTest.php +++ b/framework/core/tests/unit/Foundation/ErrorHandling/ExceptionHandler/ValidationExceptionHandlerTest.php @@ -17,6 +17,9 @@ class ValidationExceptionHandlerTest extends TestCase { private $handler; + /** + * @inheritDoc + */ protected function setUp(): void { $this->handler = new ValidationExceptionHandler; diff --git a/framework/core/tests/unit/Settings/DatabaseSettingsRepositoryTest.php b/framework/core/tests/unit/Settings/DatabaseSettingsRepositoryTest.php index 56de7ffd8..0f3b88d78 100644 --- a/framework/core/tests/unit/Settings/DatabaseSettingsRepositoryTest.php +++ b/framework/core/tests/unit/Settings/DatabaseSettingsRepositoryTest.php @@ -19,6 +19,9 @@ class DatabaseSettingsRepositoryTest extends TestCase private $connection; private $repository; + /** + * @inheritDoc + */ protected function setUp(): void { $this->connection = m::mock(ConnectionInterface::class); diff --git a/framework/core/tests/unit/Settings/MemoryCacheSettingsRepositoryTest.php b/framework/core/tests/unit/Settings/MemoryCacheSettingsRepositoryTest.php index 4011e4d6b..a7d6f1d09 100644 --- a/framework/core/tests/unit/Settings/MemoryCacheSettingsRepositoryTest.php +++ b/framework/core/tests/unit/Settings/MemoryCacheSettingsRepositoryTest.php @@ -19,6 +19,9 @@ class MemoryCacheSettingsRepositoryTest extends TestCase private $baseRepository; private $repository; + /** + * @inheritDoc + */ protected function setUp(): void { $this->baseRepository = m::mock(SettingsRepositoryInterface::class); diff --git a/framework/core/tests/unit/User/AbstractPolicyTest.php b/framework/core/tests/unit/User/AbstractPolicyTest.php index d2ba2efac..0a32eed11 100644 --- a/framework/core/tests/unit/User/AbstractPolicyTest.php +++ b/framework/core/tests/unit/User/AbstractPolicyTest.php @@ -21,6 +21,9 @@ class AbstractPolicyTest extends TestCase private $policy; private $dispatcher; + /** + * @inheritDoc + */ protected function setUp(): void { $this->policy = m::mock(CustomUserPolicy::class)->makePartial(); diff --git a/framework/core/tests/unit/User/AvatarUploaderTest.php b/framework/core/tests/unit/User/AvatarUploaderTest.php index 392bbe70d..a85e3ed9a 100644 --- a/framework/core/tests/unit/User/AvatarUploaderTest.php +++ b/framework/core/tests/unit/User/AvatarUploaderTest.php @@ -24,6 +24,9 @@ class AvatarUploaderTest extends TestCase private $filesystem; private $uploader; + /** + * @inheritDoc + */ protected function setUp(): void { $this->dispatcher = m::mock(Dispatcher::class);