-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy path_ide_helpers.php
More file actions
26 lines (23 loc) · 703 Bytes
/
Copy path_ide_helpers.php
File metadata and controls
26 lines (23 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/** @noinspection PhpUndefinedClassInspection */
/** @noinspection PhpFullyQualifiedNameUsageInspection */
/** @noinspection PhpUnusedAliasInspection */
namespace Illuminate\Testing {
use Spectator\Assertions;
/**
* @see Assertions
*
* @method $this assertValidRequest()
* @method $this assertInvalidRequest()
* @method $this assertValidResponse($status = null)
* @method $this assertInvalidResponse($status = null)
* @method $this assertValidationMessage($expected)
* @method $this assertErrorsContain($errors)
* @method $this assertPathExists()
* @method $this dumpSpecErrors()
*/
class TestResponse
{
//
}
}