Skip to content

Commit b02366d

Browse files
Laravel 11.18.1 Shift (alexjustesen#1628)
* Bump Laravel version constraint * composer update * updated composer dependencies --------- Co-authored-by: Shift <[email protected]>
1 parent 6923d65 commit b02366d

File tree

4 files changed

+276
-203
lines changed

4 files changed

+276
-203
lines changed

_ide_helper.php

Lines changed: 67 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/**
77
* A helper file for Laravel, to provide autocomplete information to your IDE
8-
* Generated for Laravel 11.16.0.
8+
* Generated for Laravel 11.18.1.
99
*
1010
* This file should not be included in your code, only analyzed by your IDE!
1111
*
@@ -3557,6 +3557,16 @@
35573557
{
35583558
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
35593559
return $instance->serializeAndRestore($serializeAndRestore);
3560+
}
3561+
/**
3562+
* Get the batches that have been dispatched.
3563+
*
3564+
* @return array
3565+
* @static
3566+
*/ public static function dispatchedBatches()
3567+
{
3568+
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
3569+
return $instance->dispatchedBatches();
35603570
}
35613571
}
35623572
/**
@@ -18035,7 +18045,7 @@
1803518045
* @param string $asset
1803618046
* @param string|null $buildDirectory
1803718047
* @return string
18038-
* @throws \Exception
18048+
* @throws \Illuminate\Foundation\ViteException
1803918049
* @static
1804018050
*/ public static function content($asset, $buildDirectory = null)
1804118051
{
@@ -24287,6 +24297,61 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2428724297
{
2428824298
/** @var \Illuminate\Database\Query\Builder $instance */
2428924299
return $instance->orWhereRaw($sql, $bindings);
24300+
}
24301+
/**
24302+
* Add a "where like" clause to the query.
24303+
*
24304+
* @param string $column
24305+
* @param string $value
24306+
* @param bool $caseSensitive
24307+
* @param string $boolean
24308+
* @param bool $not
24309+
* @return \Illuminate\Database\Query\Builder
24310+
* @static
24311+
*/ public static function whereLike($column, $value, $caseSensitive = false, $boolean = 'and', $not = false)
24312+
{
24313+
/** @var \Illuminate\Database\Query\Builder $instance */
24314+
return $instance->whereLike($column, $value, $caseSensitive, $boolean, $not);
24315+
}
24316+
/**
24317+
* Add an "or where like" clause to the query.
24318+
*
24319+
* @param string $column
24320+
* @param string $value
24321+
* @param bool $caseSensitive
24322+
* @return \Illuminate\Database\Query\Builder
24323+
* @static
24324+
*/ public static function orWhereLike($column, $value, $caseSensitive = false)
24325+
{
24326+
/** @var \Illuminate\Database\Query\Builder $instance */
24327+
return $instance->orWhereLike($column, $value, $caseSensitive);
24328+
}
24329+
/**
24330+
* Add a "where not like" clause to the query.
24331+
*
24332+
* @param string $column
24333+
* @param string $value
24334+
* @param bool $caseSensitive
24335+
* @param string $boolean
24336+
* @return \Illuminate\Database\Query\Builder
24337+
* @static
24338+
*/ public static function whereNotLike($column, $value, $caseSensitive = false, $boolean = 'and')
24339+
{
24340+
/** @var \Illuminate\Database\Query\Builder $instance */
24341+
return $instance->whereNotLike($column, $value, $caseSensitive, $boolean);
24342+
}
24343+
/**
24344+
* Add an "or where not like" clause to the query.
24345+
*
24346+
* @param string $columns
24347+
* @param string $value
24348+
* @param bool $caseSensitive
24349+
* @return \Illuminate\Database\Query\Builder
24350+
* @static
24351+
*/ public static function orWhereNotLike($column, $value, $caseSensitive = false)
24352+
{
24353+
/** @var \Illuminate\Database\Query\Builder $instance */
24354+
return $instance->orWhereNotLike($column, $value, $caseSensitive);
2429024355
}
2429124356
/**
2429224357
* Add a "where in" clause to the query.

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"awcodes/filament-versions": "^2.0.1",
1313
"chrisullyott/php-filesize": "^4.2.1",
1414
"dragonmantank/cron-expression": "^3.3.3",
15-
"filament/filament": "^3.2.95",
16-
"filament/spatie-laravel-settings-plugin": "^3.2.95",
15+
"filament/filament": "^3.2.96",
16+
"filament/spatie-laravel-settings-plugin": "^3.2.96",
1717
"geerlingguy/ping": "^1.2.1",
18-
"guzzlehttp/guzzle": "^7.9.0",
18+
"guzzlehttp/guzzle": "^7.9.2",
1919
"influxdata/influxdb-client-php": "^3.6",
2020
"laravel-notification-channels/telegram": "^5.0",
21-
"laravel/framework": "^11.16",
21+
"laravel/framework": "^11.18.1",
2222
"laravel/prompts": "^0.1.24",
2323
"laravel/sanctum": "^4.0.2",
2424
"laravel/tinker": "^2.9.0",
@@ -32,12 +32,12 @@
3232
"require-dev": {
3333
"barryvdh/laravel-ide-helper": "^3.1",
3434
"fakerphp/faker": "^1.23.1",
35-
"laravel/pint": "^1.16.2",
36-
"laravel/sail": "^1.30.2",
35+
"laravel/pint": "^1.17.0",
36+
"laravel/sail": "^1.31.0",
3737
"laravel/telescope": "^5.1.1",
3838
"mockery/mockery": "^1.6.12",
3939
"nunomaduro/collision": "^8.3.0",
40-
"phpunit/phpunit": "^11.2.7",
40+
"phpunit/phpunit": "^11.2.8",
4141
"spatie/laravel-ignition": "^2.8.0",
4242
"tightenco/duster": "^3.0.1"
4343
},

0 commit comments

Comments
 (0)