|
4 | 4 |
|
5 | 5 | /** |
6 | 6 | * A helper file for Laravel, to provide autocomplete information to your IDE |
7 | | - * Generated for Laravel 10.35.0. |
| 7 | + * Generated for Laravel 10.37.1. |
8 | 8 | * |
9 | 9 | * This file should not be included in your code, only analyzed by your IDE! |
10 | 10 | * |
@@ -6868,13 +6868,14 @@ public static function prepend($path, $data) |
6868 | 6868 | * |
6869 | 6869 | * @param string $path |
6870 | 6870 | * @param string $data |
| 6871 | + * @param bool $lock |
6871 | 6872 | * @return int |
6872 | 6873 | * @static |
6873 | 6874 | */ |
6874 | | - public static function append($path, $data) |
| 6875 | + public static function append($path, $data, $lock = false) |
6875 | 6876 | { |
6876 | 6877 | /** @var \Illuminate\Filesystem\Filesystem $instance */ |
6877 | | - return $instance->append($path, $data); |
| 6878 | + return $instance->append($path, $data, $lock); |
6878 | 6879 | } |
6879 | 6880 | /** |
6880 | 6881 | * Get or set UNIX mode of a file or directory. |
@@ -14687,6 +14688,30 @@ public static function getColumns($table) |
14687 | 14688 | { |
14688 | 14689 | /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
14689 | 14690 | return $instance->getColumns($table); |
| 14691 | + } |
| 14692 | + /** |
| 14693 | + * Get the indexes for a given table. |
| 14694 | + * |
| 14695 | + * @param string $table |
| 14696 | + * @return array |
| 14697 | + * @static |
| 14698 | + */ |
| 14699 | + public static function getIndexes($table) |
| 14700 | + { |
| 14701 | + /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
| 14702 | + return $instance->getIndexes($table); |
| 14703 | + } |
| 14704 | + /** |
| 14705 | + * Get the foreign keys for a given table. |
| 14706 | + * |
| 14707 | + * @param string $table |
| 14708 | + * @return array |
| 14709 | + * @static |
| 14710 | + */ |
| 14711 | + public static function getForeignKeys($table) |
| 14712 | + { |
| 14713 | + /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
| 14714 | + return $instance->getForeignKeys($table); |
14690 | 14715 | } |
14691 | 14716 | /** |
14692 | 14717 | * Drop all tables from the database. |
@@ -14787,6 +14812,17 @@ public static function hasView($view) |
14787 | 14812 | { //Method inherited from \Illuminate\Database\Schema\Builder |
14788 | 14813 | /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
14789 | 14814 | return $instance->hasView($view); |
| 14815 | + } |
| 14816 | + /** |
| 14817 | + * Get the user-defined types that belong to the database. |
| 14818 | + * |
| 14819 | + * @return array |
| 14820 | + * @static |
| 14821 | + */ |
| 14822 | + public static function getTypes() |
| 14823 | + { //Method inherited from \Illuminate\Database\Schema\Builder |
| 14824 | + /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
| 14825 | + return $instance->getTypes(); |
14790 | 14826 | } |
14791 | 14827 | /** |
14792 | 14828 | * Determine if the given table has a given column. |
@@ -18602,6 +18638,18 @@ class Str { |
18602 | 18638 | public static function sanitizeHtml($html) |
18603 | 18639 | { |
18604 | 18640 | return \Illuminate\Support\Str::sanitizeHtml($html); |
| 18641 | + } |
| 18642 | + /** |
| 18643 | + * |
| 18644 | + * |
| 18645 | + * @see \Filament\Support\SupportServiceProvider::packageBooted() |
| 18646 | + * @param string $value |
| 18647 | + * @return string |
| 18648 | + * @static |
| 18649 | + */ |
| 18650 | + public static function ucwords($value) |
| 18651 | + { |
| 18652 | + return \Illuminate\Support\Str::ucwords($value); |
18605 | 18653 | } |
18606 | 18654 |
|
18607 | 18655 | } |
@@ -18659,6 +18707,17 @@ class Stringable { |
18659 | 18707 | public static function sanitizeHtml() |
18660 | 18708 | { |
18661 | 18709 | return \Illuminate\Support\Stringable::sanitizeHtml(); |
| 18710 | + } |
| 18711 | + /** |
| 18712 | + * |
| 18713 | + * |
| 18714 | + * @see \Filament\Support\SupportServiceProvider::packageBooted() |
| 18715 | + * @return \Illuminate\Support\Stringable |
| 18716 | + * @static |
| 18717 | + */ |
| 18718 | + public static function ucwords() |
| 18719 | + { |
| 18720 | + return \Illuminate\Support\Stringable::ucwords(); |
18662 | 18721 | } |
18663 | 18722 |
|
18664 | 18723 | } |
@@ -18968,6 +19027,16 @@ public static function withCookies($cookies) |
18968 | 19027 | * |
18969 | 19028 | * @static |
18970 | 19029 | */ |
| 19030 | + public static function withHeaders($headers) |
| 19031 | + { |
| 19032 | + /** @var \Livewire\LivewireManager $instance */ |
| 19033 | + return $instance->withHeaders($headers); |
| 19034 | + } |
| 19035 | + /** |
| 19036 | + * |
| 19037 | + * |
| 19038 | + * @static |
| 19039 | + */ |
18971 | 19040 | public static function test($name, $params = []) |
18972 | 19041 | { |
18973 | 19042 | /** @var \Livewire\LivewireManager $instance */ |
|
0 commit comments