summaryrefslogtreecommitdiff
path: root/tests/app/Http/Exceptions
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Http/Exceptions')
-rw-r--r--tests/app/Http/Exceptions/HttpAccessDeniedExceptionTest.php2
-rw-r--r--tests/app/Http/Exceptions/HttpBadRequestExceptionTest.php2
-rw-r--r--tests/app/Http/Exceptions/HttpExceptionTest.php2
-rw-r--r--tests/app/Http/Exceptions/HttpNotFoundExceptionTest.php2
-rw-r--r--tests/app/Http/Exceptions/HttpServerErrorExceptionTest.php2
-rw-r--r--tests/app/Http/Exceptions/HttpServiceUnavailableExceptionTest.php2
-rw-r--r--tests/app/Http/Exceptions/HttpTooManyRequestsExceptionTest.php2
7 files changed, 7 insertions, 7 deletions
diff --git a/tests/app/Http/Exceptions/HttpAccessDeniedExceptionTest.php b/tests/app/Http/Exceptions/HttpAccessDeniedExceptionTest.php
index 2fc005a69e..9f32c06ff9 100644
--- a/tests/app/Http/Exceptions/HttpAccessDeniedExceptionTest.php
+++ b/tests/app/Http/Exceptions/HttpAccessDeniedExceptionTest.php
@@ -27,6 +27,6 @@ class HttpAccessDeniedExceptionTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(HttpAccessDeniedException::class));
+ self::assertTrue(class_exists(HttpAccessDeniedException::class));
}
}
diff --git a/tests/app/Http/Exceptions/HttpBadRequestExceptionTest.php b/tests/app/Http/Exceptions/HttpBadRequestExceptionTest.php
index 544cf84932..c54198b082 100644
--- a/tests/app/Http/Exceptions/HttpBadRequestExceptionTest.php
+++ b/tests/app/Http/Exceptions/HttpBadRequestExceptionTest.php
@@ -27,6 +27,6 @@ class HttpBadRequestExceptionTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(HttpBadRequestException::class));
+ self::assertTrue(class_exists(HttpBadRequestException::class));
}
}
diff --git a/tests/app/Http/Exceptions/HttpExceptionTest.php b/tests/app/Http/Exceptions/HttpExceptionTest.php
index 3b9a66b39b..63c27a701d 100644
--- a/tests/app/Http/Exceptions/HttpExceptionTest.php
+++ b/tests/app/Http/Exceptions/HttpExceptionTest.php
@@ -27,6 +27,6 @@ class HttpExceptionTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(HttpException::class));
+ self::assertTrue(class_exists(HttpException::class));
}
}
diff --git a/tests/app/Http/Exceptions/HttpNotFoundExceptionTest.php b/tests/app/Http/Exceptions/HttpNotFoundExceptionTest.php
index 781042b14d..2e1bb48af0 100644
--- a/tests/app/Http/Exceptions/HttpNotFoundExceptionTest.php
+++ b/tests/app/Http/Exceptions/HttpNotFoundExceptionTest.php
@@ -27,6 +27,6 @@ class HttpNotFoundExceptionTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(HttpNotFoundException::class));
+ self::assertTrue(class_exists(HttpNotFoundException::class));
}
}
diff --git a/tests/app/Http/Exceptions/HttpServerErrorExceptionTest.php b/tests/app/Http/Exceptions/HttpServerErrorExceptionTest.php
index 99a5aedb2d..0748b8edd1 100644
--- a/tests/app/Http/Exceptions/HttpServerErrorExceptionTest.php
+++ b/tests/app/Http/Exceptions/HttpServerErrorExceptionTest.php
@@ -27,6 +27,6 @@ class HttpServerErrorExceptionTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(HttpServerErrorException::class));
+ self::assertTrue(class_exists(HttpServerErrorException::class));
}
}
diff --git a/tests/app/Http/Exceptions/HttpServiceUnavailableExceptionTest.php b/tests/app/Http/Exceptions/HttpServiceUnavailableExceptionTest.php
index 8a2ae95910..3b6431fed3 100644
--- a/tests/app/Http/Exceptions/HttpServiceUnavailableExceptionTest.php
+++ b/tests/app/Http/Exceptions/HttpServiceUnavailableExceptionTest.php
@@ -27,6 +27,6 @@ class HttpServiceUnavailableExceptionTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(HttpServiceUnavailableException::class));
+ self::assertTrue(class_exists(HttpServiceUnavailableException::class));
}
}
diff --git a/tests/app/Http/Exceptions/HttpTooManyRequestsExceptionTest.php b/tests/app/Http/Exceptions/HttpTooManyRequestsExceptionTest.php
index 73e8479ec0..74b2a84791 100644
--- a/tests/app/Http/Exceptions/HttpTooManyRequestsExceptionTest.php
+++ b/tests/app/Http/Exceptions/HttpTooManyRequestsExceptionTest.php
@@ -27,6 +27,6 @@ class HttpTooManyRequestsExceptionTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(HttpTooManyRequestsException::class));
+ self::assertTrue(class_exists(HttpTooManyRequestsException::class));
}
}