|
4 | 4 |
|
5 | 5 | /** |
6 | 6 | * A helper file for Laravel, to provide autocomplete information to your IDE |
7 | | - * Generated for Laravel 10.33.0. |
| 7 | + * Generated for Laravel 10.34.2. |
8 | 8 | * |
9 | 9 | * This file should not be included in your code, only analyzed by your IDE! |
10 | 10 | * |
@@ -13623,6 +13623,7 @@ public static function flushMacros() |
13623 | 13623 | * @method static \Illuminate\Routing\RouteRegistrar controller(string $controller) |
13624 | 13624 | * @method static \Illuminate\Routing\RouteRegistrar domain(string $value) |
13625 | 13625 | * @method static \Illuminate\Routing\RouteRegistrar middleware(array|string|null $middleware) |
| 13626 | + * @method static \Illuminate\Routing\RouteRegistrar missing(\Closure $missing) |
13626 | 13627 | * @method static \Illuminate\Routing\RouteRegistrar name(string $value) |
13627 | 13628 | * @method static \Illuminate\Routing\RouteRegistrar namespace(string|null $value) |
13628 | 13629 | * @method static \Illuminate\Routing\RouteRegistrar prefix(string $prefix) |
@@ -14618,72 +14619,84 @@ public static function dropDatabaseIfExists($name) |
14618 | 14619 | return $instance->dropDatabaseIfExists($name); |
14619 | 14620 | } |
14620 | 14621 | /** |
14621 | | - * Determine if the given table exists. |
| 14622 | + * Get the tables for the database. |
14622 | 14623 | * |
14623 | | - * @param string $table |
14624 | | - * @return bool |
| 14624 | + * @return array |
14625 | 14625 | * @static |
14626 | 14626 | */ |
14627 | | - public static function hasTable($table) |
| 14627 | + public static function getTables() |
14628 | 14628 | { |
14629 | 14629 | /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
14630 | | - return $instance->hasTable($table); |
| 14630 | + return $instance->getTables(); |
14631 | 14631 | } |
14632 | 14632 | /** |
14633 | | - * Get the columns for a given table. |
| 14633 | + * Get the views for the database. |
14634 | 14634 | * |
14635 | | - * @param string $table |
14636 | 14635 | * @return array |
14637 | 14636 | * @static |
14638 | 14637 | */ |
14639 | | - public static function getColumns($table) |
| 14638 | + public static function getViews() |
14640 | 14639 | { |
14641 | 14640 | /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
14642 | | - return $instance->getColumns($table); |
| 14641 | + return $instance->getViews(); |
14643 | 14642 | } |
14644 | 14643 | /** |
14645 | | - * Drop all tables from the database. |
| 14644 | + * Get all of the table names for the database. |
14646 | 14645 | * |
14647 | | - * @return void |
| 14646 | + * @deprecated Will be removed in a future Laravel version. |
| 14647 | + * @return array |
14648 | 14648 | * @static |
14649 | 14649 | */ |
14650 | | - public static function dropAllTables() |
| 14650 | + public static function getAllTables() |
14651 | 14651 | { |
14652 | 14652 | /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
14653 | | - $instance->dropAllTables(); |
| 14653 | + return $instance->getAllTables(); |
14654 | 14654 | } |
14655 | 14655 | /** |
14656 | | - * Drop all views from the database. |
| 14656 | + * Get all of the view names for the database. |
14657 | 14657 | * |
14658 | | - * @return void |
| 14658 | + * @deprecated Will be removed in a future Laravel version. |
| 14659 | + * @return array |
14659 | 14660 | * @static |
14660 | 14661 | */ |
14661 | | - public static function dropAllViews() |
| 14662 | + public static function getAllViews() |
14662 | 14663 | { |
14663 | 14664 | /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
14664 | | - $instance->dropAllViews(); |
| 14665 | + return $instance->getAllViews(); |
14665 | 14666 | } |
14666 | 14667 | /** |
14667 | | - * Get all of the table names for the database. |
| 14668 | + * Get the columns for a given table. |
14668 | 14669 | * |
| 14670 | + * @param string $table |
14669 | 14671 | * @return array |
14670 | 14672 | * @static |
14671 | 14673 | */ |
14672 | | - public static function getAllTables() |
| 14674 | + public static function getColumns($table) |
14673 | 14675 | { |
14674 | 14676 | /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
14675 | | - return $instance->getAllTables(); |
| 14677 | + return $instance->getColumns($table); |
14676 | 14678 | } |
14677 | 14679 | /** |
14678 | | - * Get all of the view names for the database. |
| 14680 | + * Drop all tables from the database. |
14679 | 14681 | * |
14680 | | - * @return array |
| 14682 | + * @return void |
14681 | 14683 | * @static |
14682 | 14684 | */ |
14683 | | - public static function getAllViews() |
| 14685 | + public static function dropAllTables() |
14684 | 14686 | { |
14685 | 14687 | /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
14686 | | - return $instance->getAllViews(); |
| 14688 | + $instance->dropAllTables(); |
| 14689 | + } |
| 14690 | + /** |
| 14691 | + * Drop all views from the database. |
| 14692 | + * |
| 14693 | + * @return void |
| 14694 | + * @static |
| 14695 | + */ |
| 14696 | + public static function dropAllViews() |
| 14697 | + { |
| 14698 | + /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
| 14699 | + $instance->dropAllViews(); |
14687 | 14700 | } |
14688 | 14701 | /** |
14689 | 14702 | * Set the default string length for migrations. |
@@ -14738,6 +14751,18 @@ public static function morphUsingUlids() |
14738 | 14751 | public static function useNativeSchemaOperationsIfPossible($value = true) |
14739 | 14752 | { //Method inherited from \Illuminate\Database\Schema\Builder |
14740 | 14753 | \Illuminate\Database\Schema\MySqlBuilder::useNativeSchemaOperationsIfPossible($value); |
| 14754 | + } |
| 14755 | + /** |
| 14756 | + * Determine if the given table exists. |
| 14757 | + * |
| 14758 | + * @param string $table |
| 14759 | + * @return bool |
| 14760 | + * @static |
| 14761 | + */ |
| 14762 | + public static function hasTable($table) |
| 14763 | + { //Method inherited from \Illuminate\Database\Schema\Builder |
| 14764 | + /** @var \Illuminate\Database\Schema\MySqlBuilder $instance */ |
| 14765 | + return $instance->hasTable($table); |
14741 | 14766 | } |
14742 | 14767 | /** |
14743 | 14768 | * Determine if the given table has a given column. |
@@ -18529,6 +18554,13 @@ class Arr { |
18529 | 18554 | */ |
18530 | 18555 | class Js { |
18531 | 18556 |
|
| 18557 | + } |
| 18558 | + /** |
| 18559 | + * |
| 18560 | + * |
| 18561 | + */ |
| 18562 | + class Number { |
| 18563 | + |
18532 | 18564 | } |
18533 | 18565 | /** |
18534 | 18566 | * |
@@ -20020,6 +20052,28 @@ public static function getPowerJoinExistenceCompareKey() |
20020 | 20052 |
|
20021 | 20053 | } |
20022 | 20054 |
|
| 20055 | +} |
| 20056 | + |
| 20057 | + namespace Illuminate\Routing { |
| 20058 | + /** |
| 20059 | + * |
| 20060 | + * |
| 20061 | + */ |
| 20062 | + class Route { |
| 20063 | + /** |
| 20064 | + * |
| 20065 | + * |
| 20066 | + * @see \Livewire\Features\SupportLazyLoading\SupportLazyLoading::registerRouteMacro() |
| 20067 | + * @param mixed $enabled |
| 20068 | + * @static |
| 20069 | + */ |
| 20070 | + public static function lazy($enabled = true) |
| 20071 | + { |
| 20072 | + return \Illuminate\Routing\Route::lazy($enabled); |
| 20073 | + } |
| 20074 | + |
| 20075 | + } |
| 20076 | + |
20023 | 20077 | } |
20024 | 20078 |
|
20025 | 20079 | namespace Livewire\Features\SupportTesting { |
@@ -21694,28 +21748,6 @@ public static function assertTableColumnSummarizerExists($columnName, $summarize |
21694 | 21748 |
|
21695 | 21749 | } |
21696 | 21750 |
|
21697 | | -} |
21698 | | - |
21699 | | - namespace Illuminate\Routing { |
21700 | | - /** |
21701 | | - * |
21702 | | - * |
21703 | | - */ |
21704 | | - class Route { |
21705 | | - /** |
21706 | | - * |
21707 | | - * |
21708 | | - * @see \Livewire\Features\SupportLazyLoading\SupportLazyLoading::registerRouteMacro() |
21709 | | - * @param mixed $enabled |
21710 | | - * @static |
21711 | | - */ |
21712 | | - public static function lazy($enabled = true) |
21713 | | - { |
21714 | | - return \Illuminate\Routing\Route::lazy($enabled); |
21715 | | - } |
21716 | | - |
21717 | | - } |
21718 | | - |
21719 | 21751 | } |
21720 | 21752 |
|
21721 | 21753 | namespace Illuminate\View { |
@@ -26239,6 +26271,7 @@ class Lang extends \Illuminate\Support\Facades\Lang {} |
26239 | 26271 | class Log extends \Illuminate\Support\Facades\Log {} |
26240 | 26272 | class Mail extends \Illuminate\Support\Facades\Mail {} |
26241 | 26273 | class Notification extends \Illuminate\Support\Facades\Notification {} |
| 26274 | + class Number extends \Illuminate\Support\Number {} |
26242 | 26275 | class Password extends \Illuminate\Support\Facades\Password {} |
26243 | 26276 | class Process extends \Illuminate\Support\Facades\Process {} |
26244 | 26277 | class Queue extends \Illuminate\Support\Facades\Queue {} |
|
0 commit comments