Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: illuminate/support
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v12.2.0
Choose a base ref
...
head repository: illuminate/support
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v12.3.0
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 13, 2025

  1. 1

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    424e15f View commit details
  2. Update facade docblocks

    taylorotwell authored and github-actions[bot] committed Mar 13, 2025
    Copy the full SHA
    bcba98d View commit details
Showing with 7 additions and 4 deletions.
  1. +4 −4 Facades/Http.php
  2. +3 −0 MultipleInstanceManager.php
8 changes: 4 additions & 4 deletions Facades/Http.php
Original file line number Diff line number Diff line change
@@ -70,10 +70,10 @@
* @method static \Illuminate\Http\Client\PendingRequest dd()
* @method static \Illuminate\Http\Client\Response get(string $url, array|string|null $query = null)
* @method static \Illuminate\Http\Client\Response head(string $url, array|string|null $query = null)
* @method static \Illuminate\Http\Client\Response post(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response patch(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response put(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response delete(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response post(string $url, array|\JsonSerializable|\Illuminate\Contracts\Support\Arrayable $data = [])
* @method static \Illuminate\Http\Client\Response patch(string $url, array|\JsonSerializable|\Illuminate\Contracts\Support\Arrayable $data = [])
* @method static \Illuminate\Http\Client\Response put(string $url, array|\JsonSerializable|\Illuminate\Contracts\Support\Arrayable $data = [])
* @method static \Illuminate\Http\Client\Response delete(string $url, array|\JsonSerializable|\Illuminate\Contracts\Support\Arrayable $data = [])
* @method static array pool(callable $callback)
* @method static \Illuminate\Http\Client\Response send(string $method, string $url, array $options = [])
* @method static \GuzzleHttp\Client buildClient()
3 changes: 3 additions & 0 deletions MultipleInstanceManager.php
Original file line number Diff line number Diff line change
@@ -192,6 +192,9 @@ public function purge($name = null)
*
* @param string $name
* @param \Closure $callback
*
* @param-closure-this $this $callback
*
* @return $this
*/
public function extend($name, Closure $callback)