Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit a47aba7

Browse files
committed
cs
1 parent 9ca94c5 commit a47aba7

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

test/Integration/RequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class RequestTest extends RequestIntegrationTest
1515
{
1616
public static function setUpBeforeClass()
1717
{
18-
if (!class_exists(RequestFactory::class)) {
18+
if (! class_exists(RequestFactory::class)) {
1919
self::markTestSkipped('You need to install http-interop/http-factory-diactoros to run integration tests');
2020
}
2121
parent::setUpBeforeClass();

test/Integration/ResponseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ResponseTest extends ResponseIntegrationTest
1515
{
1616
public static function setUpBeforeClass()
1717
{
18-
if (!class_exists(RequestFactory::class)) {
18+
if (! class_exists(RequestFactory::class)) {
1919
self::markTestSkipped('You need to install http-interop/http-factory-diactoros to run integration tests');
2020
}
2121
parent::setUpBeforeClass();

test/Integration/ServerRequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ServerRequestTest extends ServerRequestIntegrationTest
1515
{
1616
public static function setUpBeforeClass()
1717
{
18-
if (!class_exists(RequestFactory::class)) {
18+
if (! class_exists(RequestFactory::class)) {
1919
self::markTestSkipped('You need to install http-interop/http-factory-diactoros to run integration tests');
2020
}
2121
parent::setUpBeforeClass();

test/Integration/StreamTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@
99

1010
use Http\Factory\Diactoros\RequestFactory;
1111
use Http\Psr7Test\StreamIntegrationTest;
12+
use Psr\Http\Message\StreamInterface;
1213
use Zend\Diactoros\Stream;
1314

1415
class StreamTest extends StreamIntegrationTest
1516
{
1617
public static function setUpBeforeClass()
1718
{
18-
if (!class_exists(RequestFactory::class)) {
19+
if (! class_exists(RequestFactory::class)) {
1920
self::markTestSkipped('You need to install http-interop/http-factory-diactoros to run integration tests');
2021
}
2122
parent::setUpBeforeClass();

test/Integration/UploadedFileTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class UploadedFileTest extends UploadedFileIntegrationTest
1616
{
1717
public static function setUpBeforeClass()
1818
{
19-
if (!class_exists(RequestFactory::class)) {
19+
if (! class_exists(RequestFactory::class)) {
2020
self::markTestSkipped('You need to install http-interop/http-factory-diactoros to run integration tests');
2121
}
2222
parent::setUpBeforeClass();

test/Integration/UriTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class UriTest extends UriIntegrationTest
1515
{
1616
public static function setUpBeforeClass()
1717
{
18-
if (!class_exists(RequestFactory::class)) {
18+
if (! class_exists(RequestFactory::class)) {
1919
self::markTestSkipped('You need to install http-interop/http-factory-diactoros to run integration tests');
2020
}
2121
parent::setUpBeforeClass();

0 commit comments

Comments
 (0)