Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 92 additions & 10 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 11.30.0.
* Generated for Laravel 11.31.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -876,6 +876,17 @@
{
/** @var \Illuminate\Foundation\Application $instance */
$instance->setDeferredServices($services);
}
/**
* Determine if the given service is a deferred service.
*
* @param string $service
* @return bool
* @static
*/ public static function isDeferredService($service)
{
/** @var \Illuminate\Foundation\Application $instance */
return $instance->isDeferredService($service);
}
/**
* Add an array of services to the application's deferred services.
Expand All @@ -889,15 +900,15 @@
$instance->addDeferredServices($services);
}
/**
* Determine if the given service is a deferred service.
* Remove an array of services from the application's deferred services.
*
* @param string $service
* @return bool
* @param array $services
* @return void
* @static
*/ public static function isDeferredService($service)
*/ public static function removeDeferredServices($services)
{
/** @var \Illuminate\Foundation\Application $instance */
return $instance->isDeferredService($service);
$instance->removeDeferredServices($services);
}
/**
* Configure the real-time facade namespace.
Expand Down Expand Up @@ -3645,6 +3656,17 @@
{
/** @var \Illuminate\Cache\CacheManager $instance */
return $instance->resolve($name);
}
/**
* Build a cache repository with the given configuration.
*
* @param array $config
* @return \Illuminate\Cache\Repository
* @static
*/ public static function build($config)
{
/** @var \Illuminate\Cache\CacheManager $instance */
return $instance->build($config);
}
/**
* Create a new cache repository with the given implementation.
Expand Down Expand Up @@ -4874,6 +4896,18 @@
{
/** @var \Illuminate\Log\Context\Repository $instance */
return $instance->push($key, ...$values);
}
/**
* Pop the latest value from the key's stack.
*
* @param string $key
* @return mixed
* @throws \RuntimeException
* @static
*/ public static function pop($key)
{
/** @var \Illuminate\Log\Context\Repository $instance */
return $instance->pop($key);
}
/**
* Push the given hidden values onto the key's stack.
Expand All @@ -4887,6 +4921,18 @@
{
/** @var \Illuminate\Log\Context\Repository $instance */
return $instance->pushHidden($key, ...$values);
}
/**
* Pop the latest hidden value from the key's stack.
*
* @param string $key
* @return mixed
* @throws \RuntimeException
* @static
*/ public static function popHidden($key)
{
/** @var \Illuminate\Log\Context\Repository $instance */
return $instance->popHidden($key);
}
/**
* Determine if the given value is in the given stack.
Expand Down Expand Up @@ -5534,6 +5580,17 @@
{
/** @var \Illuminate\Database\DatabaseManager $instance */
return $instance->connection($name);
}
/**
* Build a database connection instance from the given configuration.
*
* @param array $config
* @return \Illuminate\Database\MySqlConnection
* @static
*/ public static function build($config)
{
/** @var \Illuminate\Database\DatabaseManager $instance */
return $instance->build($config);
}
/**
* Get a database connection instance from the given configuration.
Expand Down Expand Up @@ -6613,11 +6670,14 @@
return \Illuminate\Database\MySqlConnection::getResolver($driver);
}
/**
* Execute a Closure within a transaction.
*
*
* @param \Closure $callback
* @template TReturn of mixed
*
* Execute a Closure within a transaction.
* @param (\Closure(static): TReturn) $callback
* @param int $attempts
* @return mixed
* @return \Illuminate\Database\TReturn
* @throws \Throwable
* @static
*/ public static function transaction($callback, $attempts = 1)
Expand Down Expand Up @@ -9123,7 +9183,7 @@
* @method static \Illuminate\Mail\SentMessage|null html(string $html, mixed $callback)
* @method static \Illuminate\Mail\SentMessage|null plain(string $view, array $data, mixed $callback)
* @method static string render(string|array $view, array $data = [])
* @method static mixed onQueue(string $queue, \Illuminate\Contracts\Mail\Mailable $view)
* @method static mixed onQueue(\BackedEnum|string|null $queue, \Illuminate\Contracts\Mail\Mailable $view)
* @method static mixed queueOn(string $queue, \Illuminate\Contracts\Mail\Mailable $view)
* @method static mixed laterOn(string $queue, \DateTimeInterface|\DateInterval|int $delay, \Illuminate\Contracts\Mail\Mailable $view)
* @method static \Symfony\Component\Mailer\Transport\TransportInterface getSymfonyTransport()
Expand Down Expand Up @@ -9158,6 +9218,17 @@
{
/** @var \Illuminate\Mail\MailManager $instance */
return $instance->driver($driver);
}
/**
* Build a new mailer instance.
*
* @param array $config
* @return \Illuminate\Mail\Mailer
* @static
*/ public static function build($config)
{
/** @var \Illuminate\Mail\MailManager $instance */
return $instance->build($config);
}
/**
* Create a new transport instance.
Expand Down Expand Up @@ -16941,6 +17012,17 @@
{
/** @var \Illuminate\Routing\UrlGenerator $instance */
$instance->forceScheme($scheme);
}
/**
* Force the use of the HTTPS scheme for all generated URLs.
*
* @param bool $force
* @return void
* @static
*/ public static function forceHttps($force = true)
{
/** @var \Illuminate\Routing\UrlGenerator $instance */
$instance->forceHttps($force);
}
/**
* Set the forced root URL.
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"awcodes/filament-versions": "^2.0.1",
"chrisullyott/php-filesize": "^4.2.1",
"dragonmantank/cron-expression": "^3.4.0",
"filament/filament": "^3.2.123",
"filament/spatie-laravel-settings-plugin": "^3.2.123",
"filament/filament": "^3.2.124",
"filament/spatie-laravel-settings-plugin": "^3.2.124",
"geerlingguy/ping": "^1.2.1",
"guzzlehttp/guzzle": "^7.9.2",
"influxdata/influxdb-client-php": "^3.6",
"laravel-notification-channels/telegram": "^5.0",
"laravel/framework": "^11.30",
"laravel/framework": "^11.31",
"laravel/prompts": "^0.2.1",
"laravel/sanctum": "^4.0.3",
"laravel/tinker": "^2.10.0",
Expand All @@ -37,10 +37,10 @@
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.2.2",
"fakerphp/faker": "^1.23.1",
"fakerphp/faker": "^1.24.0",
"laravel/pint": "^1.18.1",
"laravel/sail": "^1.37.1",
"laravel/telescope": "^5.2.4",
"laravel/sail": "^1.38.0",
"laravel/telescope": "^5.2.5",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.5.0",
"phpunit/phpunit": "^11.4.3",
Expand Down
Loading