Skip to content

Commit

Permalink
[10.x] Add Conditionable to TestResponse (#49112)
Browse files Browse the repository at this point in the history
  • Loading branch information
nshiro committed Nov 24, 2023
1 parent f0ac18b commit 38b897f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Testing/TestResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Illuminate\Support\Carbon;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
use Illuminate\Support\Traits\Conditionable;
use Illuminate\Support\Traits\Macroable;
use Illuminate\Support\Traits\Tappable;
use Illuminate\Support\ViewErrorBag;
Expand All @@ -32,7 +33,7 @@
*/
class TestResponse implements ArrayAccess
{
use Concerns\AssertsStatusCodes, Tappable, Macroable {
use Concerns\AssertsStatusCodes, Conditionable, Tappable, Macroable {
__call as macroCall;
}

Expand Down

0 comments on commit 38b897f

Please sign in to comment.