File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace Http \Psr7Test ;
4
4
5
- use Psr \Http \Message \RequestInterface ;
6
5
use Psr \Http \Message \ResponseInterface ;
7
6
8
7
/**
@@ -23,7 +22,7 @@ abstract class ResponseIntegrationTest extends BaseTest
23
22
private $ response ;
24
23
25
24
/**
26
- * @return RequestInterface that is used in the tests
25
+ * @return ResponseInterface that is used in the tests
27
26
*/
28
27
abstract public function createSubject ();
29
28
Original file line number Diff line number Diff line change 2
2
3
3
namespace Http \Psr7Test ;
4
4
5
- use Psr \Http \Message \RequestInterface ;
6
5
use Psr \Http \Message \ServerRequestInterface ;
7
6
8
7
/**
@@ -21,7 +20,7 @@ abstract class ServerRequestIntegrationTest extends BaseTest
21
20
private $ serverRequest ;
22
21
23
22
/**
24
- * @return RequestInterface that is used in the tests
23
+ * @return ServerRequestInterface that is used in the tests
25
24
*/
26
25
abstract public function createSubject ();
27
26
Original file line number Diff line number Diff line change 2
2
3
3
namespace Http \Psr7Test ;
4
4
5
- use Psr \Http \Message \RequestInterface ;
6
- use Psr \Http \Message \ServerRequestInterface ;
5
+ use Psr \Http \Message \UploadedFileInterface ;
7
6
8
7
/**
9
8
* TODO Write me.
@@ -18,18 +17,18 @@ abstract class UploadedFileIntegrationTest extends BaseTest
18
17
protected $ skippedTests = [];
19
18
20
19
/**
21
- * @var ServerRequestInterface
20
+ * @var UploadedFileInterface
22
21
*/
23
- private $ serverRequest ;
22
+ private $ uploadedFile ;
24
23
25
24
/**
26
- * @return RequestInterface that is used in the tests
25
+ * @return UploadedFileInterface that is used in the tests
27
26
*/
28
27
abstract public function createSubject ();
29
28
30
29
protected function setUp ()
31
30
{
32
- $ this ->serverRequest = $ this ->createSubject ();
31
+ $ this ->uploadedFile = $ this ->createSubject ();
33
32
}
34
33
35
34
public function testNothing ()
You can’t perform that action at this time.
0 commit comments