|
5 | 5 |
|
6 | 6 | /** |
7 | 7 | * 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. |
9 | 9 | * |
10 | 10 | * This file should not be included in your code, only analyzed by your IDE! |
11 | 11 | * |
|
3557 | 3557 | { |
3558 | 3558 | /** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */ |
3559 | 3559 | 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(); |
3560 | 3570 | } |
3561 | 3571 | } |
3562 | 3572 | /** |
|
18035 | 18045 | * @param string $asset |
18036 | 18046 | * @param string|null $buildDirectory |
18037 | 18047 | * @return string |
18038 | | - * @throws \Exception |
| 18048 | + * @throws \Illuminate\Foundation\ViteException |
18039 | 18049 | * @static |
18040 | 18050 | */ public static function content($asset, $buildDirectory = null) |
18041 | 18051 | { |
@@ -24287,6 +24297,61 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model { |
24287 | 24297 | { |
24288 | 24298 | /** @var \Illuminate\Database\Query\Builder $instance */ |
24289 | 24299 | 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); |
24290 | 24355 | } |
24291 | 24356 | /** |
24292 | 24357 | * Add a "where in" clause to the query. |
|
0 commit comments