mirror of https://github.com/kcal-app/kcal.git
Update dependencies
This commit is contained in:
parent
f7a95cc020
commit
6dd301a296
167
_ide_helper.php
167
_ide_helper.php
|
@ -3,7 +3,7 @@
|
|||
|
||||
/**
|
||||
* A helper file for Laravel, to provide autocomplete information to your IDE
|
||||
* Generated for Laravel 8.61.0.
|
||||
* Generated for Laravel 8.68.1.
|
||||
*
|
||||
* This file should not be included in your code, only analyzed by your IDE!
|
||||
*
|
||||
|
@ -564,6 +564,7 @@
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @return \Symfony\Component\HttpFoundation\Response
|
||||
* @static
|
||||
*/
|
||||
public static function handle($request, $type = 1, $catch = true)
|
||||
|
@ -699,7 +700,7 @@
|
|||
* @param int $code
|
||||
* @param string $message
|
||||
* @param array $headers
|
||||
* @return void
|
||||
* @return \Illuminate\Foundation\never
|
||||
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
|
||||
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
|
||||
* @static
|
||||
|
@ -707,7 +708,7 @@
|
|||
public static function abort($code, $message = '', $headers = [])
|
||||
{
|
||||
/** @var \Illuminate\Foundation\Application $instance */
|
||||
$instance->abort($code, $message, $headers);
|
||||
return $instance->abort($code, $message, $headers);
|
||||
}
|
||||
/**
|
||||
* Register a terminating callback with the application.
|
||||
|
@ -937,6 +938,7 @@
|
|||
* `has($id)` returning true does not mean that `get($id)` will not throw an exception.
|
||||
* It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
|
||||
*
|
||||
* @return bool
|
||||
* @param string $id Identifier of the entry to look for.
|
||||
* @return bool
|
||||
* @static
|
||||
|
@ -1265,6 +1267,7 @@
|
|||
/**
|
||||
* Finds an entry of the container by its identifier and returns it.
|
||||
*
|
||||
* @return mixed
|
||||
* @param string $id Identifier of the entry to look for.
|
||||
* @throws NotFoundExceptionInterface No entry was found for **this** identifier.
|
||||
* @throws ContainerExceptionInterface Error while retrieving the entry.
|
||||
|
@ -2036,6 +2039,18 @@
|
|||
{
|
||||
/** @var \Illuminate\Auth\SessionGuard $instance */
|
||||
return $instance->viaRemember();
|
||||
}
|
||||
/**
|
||||
* Set the number of minutes the remember me cookie should be valid for.
|
||||
*
|
||||
* @param int $minutes
|
||||
* @return \Illuminate\Auth\SessionGuard
|
||||
* @static
|
||||
*/
|
||||
public static function setRememberDuration($minutes)
|
||||
{
|
||||
/** @var \Illuminate\Auth\SessionGuard $instance */
|
||||
return $instance->setRememberDuration($minutes);
|
||||
}
|
||||
/**
|
||||
* Get the cookie creator instance used by the guard.
|
||||
|
@ -3023,6 +3038,17 @@
|
|||
{
|
||||
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
|
||||
$instance->assertNotDispatched($command, $callback);
|
||||
}
|
||||
/**
|
||||
* Assert that no jobs were dispatched.
|
||||
*
|
||||
* @return void
|
||||
* @static
|
||||
*/
|
||||
public static function assertNothingDispatched()
|
||||
{
|
||||
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
|
||||
$instance->assertNothingDispatched();
|
||||
}
|
||||
/**
|
||||
* Assert if a job was explicitly dispatched synchronously based on a truth-test callback.
|
||||
|
@ -3408,6 +3434,7 @@
|
|||
/**
|
||||
* Obtains multiple cache items by their unique keys.
|
||||
*
|
||||
* @return \Illuminate\Cache\iterable
|
||||
* @param \Psr\SimpleCache\iterable $keys A list of keys that can obtained in a single operation.
|
||||
* @param mixed $default Default value to return for keys that do not exist.
|
||||
* @return \Psr\SimpleCache\iterable A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value.
|
||||
|
@ -3451,6 +3478,7 @@
|
|||
/**
|
||||
* Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time.
|
||||
*
|
||||
* @return bool
|
||||
* @param string $key The key of the item to store.
|
||||
* @param mixed $value The value of the item to store, must be serializable.
|
||||
* @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and
|
||||
|
@ -3482,6 +3510,7 @@
|
|||
/**
|
||||
* Persists a set of key => value pairs in the cache, with an optional TTL.
|
||||
*
|
||||
* @return bool
|
||||
* @param \Psr\SimpleCache\iterable $values A list of key => value pairs for a multiple-set operation.
|
||||
* @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and
|
||||
* the driver supports TTL then the library may set a default value
|
||||
|
@ -3605,6 +3634,7 @@
|
|||
/**
|
||||
* Delete an item from the cache by its unique key.
|
||||
*
|
||||
* @return bool
|
||||
* @param string $key The unique cache key of the item to delete.
|
||||
* @return bool True if the item was successfully removed. False if there was an error.
|
||||
* @throws \Psr\SimpleCache\InvalidArgumentException
|
||||
|
@ -3619,6 +3649,7 @@
|
|||
/**
|
||||
* Deletes multiple cache items in a single operation.
|
||||
*
|
||||
* @return bool
|
||||
* @param \Psr\SimpleCache\iterable $keys A list of string-based keys to be deleted.
|
||||
* @return bool True if the items were successfully removed. False if there was an error.
|
||||
* @throws \Psr\SimpleCache\InvalidArgumentException
|
||||
|
@ -3634,6 +3665,7 @@
|
|||
/**
|
||||
* Wipes clean the entire cache's keys.
|
||||
*
|
||||
* @return bool
|
||||
* @return bool True on success and false on failure.
|
||||
* @static
|
||||
*/
|
||||
|
@ -4817,6 +4849,18 @@
|
|||
{ //Method inherited from \Illuminate\Database\Connection
|
||||
/** @var \Illuminate\Database\MySqlConnection $instance */
|
||||
$instance->logQuery($query, $bindings, $time);
|
||||
}
|
||||
/**
|
||||
* Register a hook to be run just before a database query is executed.
|
||||
*
|
||||
* @param \Closure $callback
|
||||
* @return \Illuminate\Database\MySqlConnection
|
||||
* @static
|
||||
*/
|
||||
public static function beforeExecuting($callback)
|
||||
{ //Method inherited from \Illuminate\Database\Connection
|
||||
/** @var \Illuminate\Database\MySqlConnection $instance */
|
||||
return $instance->beforeExecuting($callback);
|
||||
}
|
||||
/**
|
||||
* Register a database query listener with the connection.
|
||||
|
@ -7328,6 +7372,18 @@
|
|||
*/
|
||||
class Log {
|
||||
/**
|
||||
* Build an on-demand log channel.
|
||||
*
|
||||
* @param array $config
|
||||
* @return \Psr\Log\LoggerInterface
|
||||
* @static
|
||||
*/
|
||||
public static function build($config)
|
||||
{
|
||||
/** @var \Illuminate\Log\LogManager $instance */
|
||||
return $instance->build($config);
|
||||
}
|
||||
/**
|
||||
* Create a new, on-demand aggregate logger instance.
|
||||
*
|
||||
* @param array $channels
|
||||
|
@ -8084,6 +8140,20 @@
|
|||
{ //Method inherited from \Illuminate\Support\Manager
|
||||
/** @var \Illuminate\Notifications\ChannelManager $instance */
|
||||
return $instance->forgetDrivers();
|
||||
}
|
||||
/**
|
||||
* Assert if a notification was sent on-demand based on a truth-test callback.
|
||||
*
|
||||
* @param string|\Closure $notification
|
||||
* @param callable|null $callback
|
||||
* @return void
|
||||
* @throws \Exception
|
||||
* @static
|
||||
*/
|
||||
public static function assertSentOnDemand($notification, $callback = null)
|
||||
{
|
||||
/** @var \Illuminate\Support\Testing\Fakes\NotificationFake $instance */
|
||||
$instance->assertSentOnDemand($notification, $callback);
|
||||
}
|
||||
/**
|
||||
* Assert if a notification was sent based on a truth-test callback.
|
||||
|
@ -8099,6 +8169,19 @@
|
|||
{
|
||||
/** @var \Illuminate\Support\Testing\Fakes\NotificationFake $instance */
|
||||
$instance->assertSentTo($notifiable, $notification, $callback);
|
||||
}
|
||||
/**
|
||||
* Assert if a notification was sent on-demand a number of times.
|
||||
*
|
||||
* @param string $notification
|
||||
* @param int $times
|
||||
* @return void
|
||||
* @static
|
||||
*/
|
||||
public static function assertSentOnDemandTimes($notification, $times = 1)
|
||||
{
|
||||
/** @var \Illuminate\Support\Testing\Fakes\NotificationFake $instance */
|
||||
$instance->assertSentOnDemandTimes($notification, $times);
|
||||
}
|
||||
/**
|
||||
* Assert if a notification was sent a number of times.
|
||||
|
@ -9434,6 +9517,7 @@
|
|||
/**
|
||||
* Clones a request and overrides some of its parameters.
|
||||
*
|
||||
* @return static
|
||||
* @param array $query The GET parameters
|
||||
* @param array $request The POST parameters
|
||||
* @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...)
|
||||
|
@ -10913,6 +10997,18 @@
|
|||
{
|
||||
/** @var \Illuminate\Http\Request $instance */
|
||||
return $instance->boolean($key, $default);
|
||||
}
|
||||
/**
|
||||
* Retrieve input from the request as a collection.
|
||||
*
|
||||
* @param array|string|null $key
|
||||
* @return \Illuminate\Support\Collection
|
||||
* @static
|
||||
*/
|
||||
public static function collect($key = null)
|
||||
{
|
||||
/** @var \Illuminate\Http\Request $instance */
|
||||
return $instance->collect($key);
|
||||
}
|
||||
/**
|
||||
* Get a subset containing the provided keys with values from the input data.
|
||||
|
@ -15046,6 +15142,19 @@
|
|||
{
|
||||
/** @var \Illuminate\View\Factory $instance */
|
||||
return $instance->renderComponent();
|
||||
}
|
||||
/**
|
||||
* Get an item from the component data that exists above the current component.
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $default
|
||||
* @return mixed|null
|
||||
* @static
|
||||
*/
|
||||
public static function getConsumableComponentData($key, $default = null)
|
||||
{
|
||||
/** @var \Illuminate\View\Factory $instance */
|
||||
return $instance->getConsumableComponentData($key, $default);
|
||||
}
|
||||
/**
|
||||
* Start the slot rendering process.
|
||||
|
@ -17092,6 +17201,37 @@ namespace {
|
|||
return $instance->orWhereMorphedTo($relation, $model);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a "belongs to" relationship where clause to the query.
|
||||
*
|
||||
* @param \Illuminate\Database\Eloquent\Model $related
|
||||
* @param string $relationship
|
||||
* @param string $boolean
|
||||
* @return \Illuminate\Database\Eloquent\Builder|static
|
||||
* @throws \Exception
|
||||
* @static
|
||||
*/
|
||||
public static function whereBelongsTo($related, $relationshipName = null, $boolean = 'and')
|
||||
{
|
||||
/** @var \Illuminate\Database\Eloquent\Builder $instance */
|
||||
return $instance->whereBelongsTo($related, $relationshipName, $boolean);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add an "BelongsTo" relationship with an "or where" clause to the query.
|
||||
*
|
||||
* @param \Illuminate\Database\Eloquent\Model $related
|
||||
* @param string $relationship
|
||||
* @return \Illuminate\Database\Eloquent\Builder|static
|
||||
* @throws \Exception
|
||||
* @static
|
||||
*/
|
||||
public static function orWhereBelongsTo($related, $relationshipName = null)
|
||||
{
|
||||
/** @var \Illuminate\Database\Eloquent\Builder $instance */
|
||||
return $instance->orWhereBelongsTo($related, $relationshipName);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add subselect queries to include an aggregate value for a relationship.
|
||||
*
|
||||
|
@ -18586,7 +18726,7 @@ namespace {
|
|||
/**
|
||||
* Add an "order by" clause to the query.
|
||||
*
|
||||
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column
|
||||
* @param \Closure|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column
|
||||
* @param string $direction
|
||||
* @return \Illuminate\Database\Query\Builder
|
||||
* @throws \InvalidArgumentException
|
||||
|
@ -18601,7 +18741,7 @@ namespace {
|
|||
/**
|
||||
* Add a descending "order by" clause to the query.
|
||||
*
|
||||
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column
|
||||
* @param \Closure|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column
|
||||
* @return \Illuminate\Database\Query\Builder
|
||||
* @static
|
||||
*/
|
||||
|
@ -19086,6 +19226,19 @@ namespace {
|
|||
return $instance->insertUsing($columns, $query);
|
||||
}
|
||||
|
||||
/**
|
||||
* Update records in a PostgreSQL database using the update from syntax.
|
||||
*
|
||||
* @param array $values
|
||||
* @return int
|
||||
* @static
|
||||
*/
|
||||
public static function updateFrom($values)
|
||||
{
|
||||
/** @var \Illuminate\Database\Query\Builder $instance */
|
||||
return $instance->updateFrom($values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Insert or update a record matching the attributes, and fill it with values.
|
||||
*
|
||||
|
@ -19282,13 +19435,13 @@ namespace {
|
|||
/**
|
||||
* Die and dump the current SQL and bindings.
|
||||
*
|
||||
* @return void
|
||||
* @return \Illuminate\Database\Query\never
|
||||
* @static
|
||||
*/
|
||||
public static function dd()
|
||||
{
|
||||
/** @var \Illuminate\Database\Query\Builder $instance */
|
||||
$instance->dd();
|
||||
return $instance->dd();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue