Skip to content

Commit 6724e59

Browse files
Laravel 10.34.2 Shift (alexjustesen#945)
Co-authored-by: Shift <[email protected]>
1 parent 707e2f5 commit 6724e59

File tree

10 files changed

+483
-356
lines changed

10 files changed

+483
-356
lines changed

_ide_helper.php

Lines changed: 80 additions & 47 deletions
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.33.0.
7+
* Generated for Laravel 10.34.2.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -13623,6 +13623,7 @@ public static function flushMacros()
1362313623
* @method static \Illuminate\Routing\RouteRegistrar controller(string $controller)
1362413624
* @method static \Illuminate\Routing\RouteRegistrar domain(string $value)
1362513625
* @method static \Illuminate\Routing\RouteRegistrar middleware(array|string|null $middleware)
13626+
* @method static \Illuminate\Routing\RouteRegistrar missing(\Closure $missing)
1362613627
* @method static \Illuminate\Routing\RouteRegistrar name(string $value)
1362713628
* @method static \Illuminate\Routing\RouteRegistrar namespace(string|null $value)
1362813629
* @method static \Illuminate\Routing\RouteRegistrar prefix(string $prefix)
@@ -14618,72 +14619,84 @@ public static function dropDatabaseIfExists($name)
1461814619
return $instance->dropDatabaseIfExists($name);
1461914620
}
1462014621
/**
14621-
* Determine if the given table exists.
14622+
* Get the tables for the database.
1462214623
*
14623-
* @param string $table
14624-
* @return bool
14624+
* @return array
1462514625
* @static
1462614626
*/
14627-
public static function hasTable($table)
14627+
public static function getTables()
1462814628
{
1462914629
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14630-
return $instance->hasTable($table);
14630+
return $instance->getTables();
1463114631
}
1463214632
/**
14633-
* Get the columns for a given table.
14633+
* Get the views for the database.
1463414634
*
14635-
* @param string $table
1463614635
* @return array
1463714636
* @static
1463814637
*/
14639-
public static function getColumns($table)
14638+
public static function getViews()
1464014639
{
1464114640
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14642-
return $instance->getColumns($table);
14641+
return $instance->getViews();
1464314642
}
1464414643
/**
14645-
* Drop all tables from the database.
14644+
* Get all of the table names for the database.
1464614645
*
14647-
* @return void
14646+
* @deprecated Will be removed in a future Laravel version.
14647+
* @return array
1464814648
* @static
1464914649
*/
14650-
public static function dropAllTables()
14650+
public static function getAllTables()
1465114651
{
1465214652
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14653-
$instance->dropAllTables();
14653+
return $instance->getAllTables();
1465414654
}
1465514655
/**
14656-
* Drop all views from the database.
14656+
* Get all of the view names for the database.
1465714657
*
14658-
* @return void
14658+
* @deprecated Will be removed in a future Laravel version.
14659+
* @return array
1465914660
* @static
1466014661
*/
14661-
public static function dropAllViews()
14662+
public static function getAllViews()
1466214663
{
1466314664
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14664-
$instance->dropAllViews();
14665+
return $instance->getAllViews();
1466514666
}
1466614667
/**
14667-
* Get all of the table names for the database.
14668+
* Get the columns for a given table.
1466814669
*
14670+
* @param string $table
1466914671
* @return array
1467014672
* @static
1467114673
*/
14672-
public static function getAllTables()
14674+
public static function getColumns($table)
1467314675
{
1467414676
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14675-
return $instance->getAllTables();
14677+
return $instance->getColumns($table);
1467614678
}
1467714679
/**
14678-
* Get all of the view names for the database.
14680+
* Drop all tables from the database.
1467914681
*
14680-
* @return array
14682+
* @return void
1468114683
* @static
1468214684
*/
14683-
public static function getAllViews()
14685+
public static function dropAllTables()
1468414686
{
1468514687
/** @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();
1468714700
}
1468814701
/**
1468914702
* Set the default string length for migrations.
@@ -14738,6 +14751,18 @@ public static function morphUsingUlids()
1473814751
public static function useNativeSchemaOperationsIfPossible($value = true)
1473914752
{ //Method inherited from \Illuminate\Database\Schema\Builder
1474014753
\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);
1474114766
}
1474214767
/**
1474314768
* Determine if the given table has a given column.
@@ -18529,6 +18554,13 @@ class Arr {
1852918554
*/
1853018555
class Js {
1853118556

18557+
}
18558+
/**
18559+
*
18560+
*
18561+
*/
18562+
class Number {
18563+
1853218564
}
1853318565
/**
1853418566
*
@@ -20020,6 +20052,28 @@ public static function getPowerJoinExistenceCompareKey()
2002020052

2002120053
}
2002220054

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+
2002320077
}
2002420078

2002520079
namespace Livewire\Features\SupportTesting {
@@ -21694,28 +21748,6 @@ public static function assertTableColumnSummarizerExists($columnName, $summarize
2169421748

2169521749
}
2169621750

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-
2171921751
}
2172021752

2172121753
namespace Illuminate\View {
@@ -26239,6 +26271,7 @@ class Lang extends \Illuminate\Support\Facades\Lang {}
2623926271
class Log extends \Illuminate\Support\Facades\Log {}
2624026272
class Mail extends \Illuminate\Support\Facades\Mail {}
2624126273
class Notification extends \Illuminate\Support\Facades\Notification {}
26274+
class Number extends \Illuminate\Support\Number {}
2624226275
class Password extends \Illuminate\Support\Facades\Password {}
2624326276
class Process extends \Illuminate\Support\Facades\Process {}
2624426277
class Queue extends \Illuminate\Support\Facades\Queue {}

composer.json

Lines changed: 5 additions & 5 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.0.101",
17-
"filament/spatie-laravel-settings-plugin": "^3.0.101",
16+
"filament/filament": "^3.1.0",
17+
"filament/spatie-laravel-settings-plugin": "^3.1.0",
1818
"guzzlehttp/guzzle": "^7.8",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.33",
21+
"laravel/framework": "^10.34.2",
2222
"laravel/prompts": "^0.1.13",
2323
"laravel/sanctum": "^3.3.2",
2424
"laravel/tinker": "^2.8.2",
25-
"livewire/livewire": "^3.2.1",
25+
"livewire/livewire": "^3.2.2",
2626
"maatwebsite/excel": "^3.1.50",
2727
"maennchen/zipstream-php": "^2.4",
2828
"spatie/laravel-settings": "^2.8.3",
@@ -32,7 +32,7 @@
3232
"barryvdh/laravel-ide-helper": "^2.13",
3333
"fakerphp/faker": "^1.23.0",
3434
"laravel/pint": "^1.13.6",
35-
"laravel/sail": "^1.26.1",
35+
"laravel/sail": "^1.26.2",
3636
"laravel/telescope": "^4.17.2",
3737
"mockery/mockery": "^1.6.6",
3838
"nunomaduro/collision": "^7.10.0",

0 commit comments

Comments
 (0)