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
26 changes: 25 additions & 1 deletion _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 10.34.2.
* Generated for Laravel 10.35.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -14080,6 +14080,18 @@ public static function substituteImplicitBindings($route)
{
/** @var \Illuminate\Routing\Router $instance */
$instance->substituteImplicitBindings($route);
}
/**
* Register a callback to to run after implicit bindings are substituted.
*
* @param callable $callback
* @return \Illuminate\Routing\Router
* @static
*/
public static function substituteImplicitBindingsUsing($callback)
{
/** @var \Illuminate\Routing\Router $instance */
return $instance->substituteImplicitBindingsUsing($callback);
}
/**
* Register a route matched event listener.
Expand Down Expand Up @@ -14763,6 +14775,18 @@ 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.
*
* @param string $view
* @return bool
* @static
*/
public static function hasView($view)
{ //Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->hasView($view);
}
/**
* Determine if the given table has a given column.
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
"chrisullyott/php-filesize": "^4.2.1",
"doctrine/dbal": "^3.7.2",
"dragonmantank/cron-expression": "^3.3.3",
"filament/filament": "^3.1.0",
"filament/spatie-laravel-settings-plugin": "^3.1.0",
"guzzlehttp/guzzle": "^7.8",
"filament/filament": "^3.1.15",
"filament/spatie-laravel-settings-plugin": "^3.1.15",
"guzzlehttp/guzzle": "^7.8.1",
"influxdata/influxdb-client-php": "^3.4",
"laravel-notification-channels/telegram": "^4.0",
"laravel/framework": "^10.34.2",
"laravel/framework": "^10.35",
"laravel/prompts": "^0.1.13",
"laravel/sanctum": "^3.3.2",
"laravel/tinker": "^2.8.2",
"livewire/livewire": "^3.2.2",
"livewire/livewire": "^3.2.6",
"maatwebsite/excel": "^3.1.50",
"maennchen/zipstream-php": "^2.4",
"spatie/laravel-settings": "^2.8.3",
Expand All @@ -31,12 +31,12 @@
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.13",
"fakerphp/faker": "^1.23.0",
"laravel/pint": "^1.13.6",
"laravel/sail": "^1.26.2",
"laravel/pint": "^1.13.7",
"laravel/sail": "^1.26.3",
"laravel/telescope": "^4.17.2",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^7.10.0",
"phpunit/phpunit": "^10.4.2",
"phpunit/phpunit": "^10.5.2",
"spatie/laravel-ignition": "^2.3.1"
},
"autoload": {
Expand Down
Loading