Skip to content

Commit d7b1e57

Browse files
Laravel 10.35.0 Shift (alexjustesen#960)
Co-authored-by: Shift <[email protected]>
1 parent d504470 commit d7b1e57

File tree

7 files changed

+262
-163
lines changed

7 files changed

+262
-163
lines changed

_ide_helper.php

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* A helper file for Laravel, to provide autocomplete information to your IDE
7-
* Generated for Laravel 10.34.2.
7+
* Generated for Laravel 10.35.0.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -14080,6 +14080,18 @@ public static function substituteImplicitBindings($route)
1408014080
{
1408114081
/** @var \Illuminate\Routing\Router $instance */
1408214082
$instance->substituteImplicitBindings($route);
14083+
}
14084+
/**
14085+
* Register a callback to to run after implicit bindings are substituted.
14086+
*
14087+
* @param callable $callback
14088+
* @return \Illuminate\Routing\Router
14089+
* @static
14090+
*/
14091+
public static function substituteImplicitBindingsUsing($callback)
14092+
{
14093+
/** @var \Illuminate\Routing\Router $instance */
14094+
return $instance->substituteImplicitBindingsUsing($callback);
1408314095
}
1408414096
/**
1408514097
* Register a route matched event listener.
@@ -14763,6 +14775,18 @@ public static function hasTable($table)
1476314775
{ //Method inherited from \Illuminate\Database\Schema\Builder
1476414776
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
1476514777
return $instance->hasTable($table);
14778+
}
14779+
/**
14780+
* Determine if the given view exists.
14781+
*
14782+
* @param string $view
14783+
* @return bool
14784+
* @static
14785+
*/
14786+
public static function hasView($view)
14787+
{ //Method inherited from \Illuminate\Database\Schema\Builder
14788+
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14789+
return $instance->hasView($view);
1476614790
}
1476714791
/**
1476814792
* Determine if the given table has a given column.

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
"chrisullyott/php-filesize": "^4.2.1",
1414
"doctrine/dbal": "^3.7.2",
1515
"dragonmantank/cron-expression": "^3.3.3",
16-
"filament/filament": "^3.1.0",
17-
"filament/spatie-laravel-settings-plugin": "^3.1.0",
18-
"guzzlehttp/guzzle": "^7.8",
16+
"filament/filament": "^3.1.15",
17+
"filament/spatie-laravel-settings-plugin": "^3.1.15",
18+
"guzzlehttp/guzzle": "^7.8.1",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.34.2",
21+
"laravel/framework": "^10.35",
2222
"laravel/prompts": "^0.1.13",
2323
"laravel/sanctum": "^3.3.2",
2424
"laravel/tinker": "^2.8.2",
25-
"livewire/livewire": "^3.2.2",
25+
"livewire/livewire": "^3.2.6",
2626
"maatwebsite/excel": "^3.1.50",
2727
"maennchen/zipstream-php": "^2.4",
2828
"spatie/laravel-settings": "^2.8.3",
@@ -31,12 +31,12 @@
3131
"require-dev": {
3232
"barryvdh/laravel-ide-helper": "^2.13",
3333
"fakerphp/faker": "^1.23.0",
34-
"laravel/pint": "^1.13.6",
35-
"laravel/sail": "^1.26.2",
34+
"laravel/pint": "^1.13.7",
35+
"laravel/sail": "^1.26.3",
3636
"laravel/telescope": "^4.17.2",
3737
"mockery/mockery": "^1.6.6",
3838
"nunomaduro/collision": "^7.10.0",
39-
"phpunit/phpunit": "^10.4.2",
39+
"phpunit/phpunit": "^10.5.2",
4040
"spatie/laravel-ignition": "^2.3.1"
4141
},
4242
"autoload": {

0 commit comments

Comments
 (0)