We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d08b3e5 + af51be8 commit cd49f21Copy full SHA for cd49f21
src/There4/Slim/Test/WebTestCase.php
@@ -6,7 +6,10 @@
6
7
class WebTestCase extends \PHPUnit_Framework_TestCase
8
{
9
+ /** @var \Slim\Slim */
10
protected $app;
11
+
12
+ /** @var WebTestClient */
13
protected $client;
14
15
// Run for each unit test to setup our slim app environment
src/There4/Slim/Test/WebTestClient.php
@@ -6,8 +6,13 @@
class WebTestClient
public $app;
+ /** @var \Slim\Http\Request */
public $request;
+ /** @var \Slim\Http\Response */
16
public $response;
17
18
public function __construct(Slim\Slim $slim)
0 commit comments