Skip to content

Commit

Permalink
Make PendingRequest conditionable (#40762)
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipfickl authored Feb 2, 2022
1 parent 00cdf85 commit 442b6d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Http/Client/PendingRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
use Illuminate\Http\Client\Events\ResponseReceived;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
use Illuminate\Support\Traits\Conditionable;
use Illuminate\Support\Traits\Macroable;
use Psr\Http\Message\MessageInterface;
use Symfony\Component\VarDumper\VarDumper;

class PendingRequest
{
use Macroable;
use Conditionable, Macroable;

/**
* The factory instance.
Expand Down

0 comments on commit 442b6d0

Please sign in to comment.