This repository was archived by the owner on Jan 29, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class RequestTest extends RequestIntegrationTest
15
15
{
16
16
public static function setUpBeforeClass ()
17
17
{
18
- if (!class_exists (RequestFactory::class)) {
18
+ if (! class_exists (RequestFactory::class)) {
19
19
self ::markTestSkipped ('You need to install http-interop/http-factory-diactoros to run integration tests ' );
20
20
}
21
21
parent ::setUpBeforeClass ();
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class ResponseTest extends ResponseIntegrationTest
15
15
{
16
16
public static function setUpBeforeClass ()
17
17
{
18
- if (!class_exists (RequestFactory::class)) {
18
+ if (! class_exists (RequestFactory::class)) {
19
19
self ::markTestSkipped ('You need to install http-interop/http-factory-diactoros to run integration tests ' );
20
20
}
21
21
parent ::setUpBeforeClass ();
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class ServerRequestTest extends ServerRequestIntegrationTest
15
15
{
16
16
public static function setUpBeforeClass ()
17
17
{
18
- if (!class_exists (RequestFactory::class)) {
18
+ if (! class_exists (RequestFactory::class)) {
19
19
self ::markTestSkipped ('You need to install http-interop/http-factory-diactoros to run integration tests ' );
20
20
}
21
21
parent ::setUpBeforeClass ();
Original file line number Diff line number Diff line change 9
9
10
10
use Http \Factory \Diactoros \RequestFactory ;
11
11
use Http \Psr7Test \StreamIntegrationTest ;
12
+ use Psr \Http \Message \StreamInterface ;
12
13
use Zend \Diactoros \Stream ;
13
14
14
15
class StreamTest extends StreamIntegrationTest
15
16
{
16
17
public static function setUpBeforeClass ()
17
18
{
18
- if (!class_exists (RequestFactory::class)) {
19
+ if (! class_exists (RequestFactory::class)) {
19
20
self ::markTestSkipped ('You need to install http-interop/http-factory-diactoros to run integration tests ' );
20
21
}
21
22
parent ::setUpBeforeClass ();
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class UploadedFileTest extends UploadedFileIntegrationTest
16
16
{
17
17
public static function setUpBeforeClass ()
18
18
{
19
- if (!class_exists (RequestFactory::class)) {
19
+ if (! class_exists (RequestFactory::class)) {
20
20
self ::markTestSkipped ('You need to install http-interop/http-factory-diactoros to run integration tests ' );
21
21
}
22
22
parent ::setUpBeforeClass ();
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class UriTest extends UriIntegrationTest
15
15
{
16
16
public static function setUpBeforeClass ()
17
17
{
18
- if (!class_exists (RequestFactory::class)) {
18
+ if (! class_exists (RequestFactory::class)) {
19
19
self ::markTestSkipped ('You need to install http-interop/http-factory-diactoros to run integration tests ' );
20
20
}
21
21
parent ::setUpBeforeClass ();
You can’t perform that action at this time.
0 commit comments