Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kreaweb.be committed Oct 10, 2024
1 parent 8cc2969 commit da52fc1
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 78 deletions.
38 changes: 18 additions & 20 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.26.0.
* Generated for Laravel 11.27.2.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -1425,7 +1425,7 @@
/**
* Fire all of the after resolving attribute callbacks.
*
* @param \ReflectionAttribute[] $abstract
* @param \ReflectionAttribute[] $attributes
* @param mixed $object
* @return void
* @static
Expand Down Expand Up @@ -3745,10 +3745,9 @@
/**
* Retrieve an item from the cache by key.
*
* @template TCacheValue
* @param array|string $key
* @param \Illuminate\Cache\TCacheValue|\Illuminate\Cache\(\Closure(): TCacheValue) $default
* @return \Illuminate\Cache\(TCacheValue is null ? mixed : TCacheValue)
* @param mixed $default
* @return mixed
* @static
*/ public static function get($key, $default = null)
{
Expand Down Expand Up @@ -3787,10 +3786,9 @@
/**
* Retrieve an item from the cache and delete it.
*
* @template TCacheValue
* @param array|string $key
* @param \Illuminate\Cache\TCacheValue|\Illuminate\Cache\(\Closure(): TCacheValue) $default
* @return \Illuminate\Cache\(TCacheValue is null ? mixed : TCacheValue)
* @param mixed $default
* @return mixed
* @static
*/ public static function pull($key, $default = null)
{
Expand Down Expand Up @@ -14604,6 +14602,17 @@
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->dropDatabaseIfExists($name);
}
/**
* Determine if the given table exists.
*
* @param string $table
* @return bool
* @static
*/ public static function hasTable($table)
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->hasTable($table);
}
/**
* Get the tables for the database.
Expand Down Expand Up @@ -14716,17 +14725,6 @@
*/ public static function morphUsingUlids()
{ //Method inherited from \Illuminate\Database\Schema\Builder
\Illuminate\Database\Schema\MySqlBuilder::morphUsingUlids();
}
/**
* Determine if the given table exists.
*
* @param string $table
* @return bool
* @static
*/ public static function hasTable($table)
{ //Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->hasTable($table);
}
/**
* Determine if the given view exists.
Expand Down Expand Up @@ -16843,7 +16841,7 @@
/**
* Format the array of URL parameters.
*
* @param mixed|array $parameters
* @param mixed $parameters
* @return array
* @static
*/ public static function formatParameters($parameters)
Expand Down
Loading

0 comments on commit da52fc1

Please sign in to comment.