Skip to content

Commit 392a9c0

Browse files
Laravel 10.37.1 Shift (alexjustesen#981)
Co-authored-by: Shift <[email protected]>
1 parent fc8a8c0 commit 392a9c0

File tree

8 files changed

+169
-190
lines changed

8 files changed

+169
-190
lines changed

.phpstorm.meta.php

Lines changed: 0 additions & 88 deletions
Large diffs are not rendered by default.

_ide_helper.php

Lines changed: 72 additions & 3 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.35.0.
7+
* Generated for Laravel 10.37.1.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -6868,13 +6868,14 @@ public static function prepend($path, $data)
68686868
*
68696869
* @param string $path
68706870
* @param string $data
6871+
* @param bool $lock
68716872
* @return int
68726873
* @static
68736874
*/
6874-
public static function append($path, $data)
6875+
public static function append($path, $data, $lock = false)
68756876
{
68766877
/** @var \Illuminate\Filesystem\Filesystem $instance */
6877-
return $instance->append($path, $data);
6878+
return $instance->append($path, $data, $lock);
68786879
}
68796880
/**
68806881
* Get or set UNIX mode of a file or directory.
@@ -14687,6 +14688,30 @@ public static function getColumns($table)
1468714688
{
1468814689
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
1468914690
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);
1469014715
}
1469114716
/**
1469214717
* Drop all tables from the database.
@@ -14787,6 +14812,17 @@ public static function hasView($view)
1478714812
{ //Method inherited from \Illuminate\Database\Schema\Builder
1478814813
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
1478914814
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();
1479014826
}
1479114827
/**
1479214828
* Determine if the given table has a given column.
@@ -18602,6 +18638,18 @@ class Str {
1860218638
public static function sanitizeHtml($html)
1860318639
{
1860418640
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);
1860518653
}
1860618654

1860718655
}
@@ -18659,6 +18707,17 @@ class Stringable {
1865918707
public static function sanitizeHtml()
1866018708
{
1866118709
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();
1866218721
}
1866318722

1866418723
}
@@ -18968,6 +19027,16 @@ public static function withCookies($cookies)
1896819027
*
1896919028
* @static
1897019029
*/
19030+
public static function withHeaders($headers)
19031+
{
19032+
/** @var \Livewire\LivewireManager $instance */
19033+
return $instance->withHeaders($headers);
19034+
}
19035+
/**
19036+
*
19037+
*
19038+
* @static
19039+
*/
1897119040
public static function test($name, $params = [])
1897219041
{
1897319042
/** @var \Livewire\LivewireManager $instance */

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"guzzlehttp/guzzle": "^7.8.1",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.35",
21+
"laravel/framework": "^10.37",
2222
"laravel/prompts": "^0.1.13",
2323
"laravel/sanctum": "^3.3.2",
2424
"laravel/tinker": "^2.8.2",

0 commit comments

Comments
 (0)