Skip to content

Commit d9dacd8

Browse files
Laravel 10.28.0 Shift (alexjustesen#861)
Co-authored-by: Shift <[email protected]>
1 parent 22ae702 commit d9dacd8

File tree

6 files changed

+210
-144
lines changed

6 files changed

+210
-144
lines changed

_ide_helper.php

Lines changed: 65 additions & 2 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.26.2.
7+
* Generated for Laravel 10.28.0.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -18484,7 +18484,6 @@ public static function sanitizeHtml()
1848418484
/**
1848518485
*
1848618486
*
18487-
* @method static void setUpdateUri()
1848818487
* @see \Livewire\LivewireManager
1848918488
*/
1849018489
class Livewire {
@@ -18753,6 +18752,26 @@ public static function withQueryParams($params)
1875318752
*
1875418753
* @static
1875518754
*/
18755+
public static function withCookie($name, $value)
18756+
{
18757+
/** @var \Livewire\LivewireManager $instance */
18758+
return $instance->withCookie($name, $value);
18759+
}
18760+
/**
18761+
*
18762+
*
18763+
* @static
18764+
*/
18765+
public static function withCookies($cookies)
18766+
{
18767+
/** @var \Livewire\LivewireManager $instance */
18768+
return $instance->withCookies($cookies);
18769+
}
18770+
/**
18771+
*
18772+
*
18773+
* @static
18774+
*/
1875618775
public static function test($name, $params = [])
1875718776
{
1875818777
/** @var \Livewire\LivewireManager $instance */
@@ -21629,6 +21648,17 @@ public static function extends($view, $params = [])
2162921648
public static function layout($view, $params = [])
2163021649
{
2163121650
return \Illuminate\View\View::layout($view, $params);
21651+
}
21652+
/**
21653+
*
21654+
*
21655+
* @see \Livewire\Features\SupportPageComponents\SupportPageComponents::registerLayoutViewMacros()
21656+
* @param callable $callback
21657+
* @static
21658+
*/
21659+
public static function response($callback)
21660+
{
21661+
return \Illuminate\View\View::response($callback);
2163221662
}
2163321663

2163421664
}
@@ -22592,6 +22622,39 @@ public static function chunkById($count, $callback, $column = null, $alias = nul
2259222622
return $instance->chunkById($count, $callback, $column, $alias);
2259322623
}
2259422624

22625+
/**
22626+
* Chunk the results of a query by comparing IDs in descending order.
22627+
*
22628+
* @param int $count
22629+
* @param callable $callback
22630+
* @param string|null $column
22631+
* @param string|null $alias
22632+
* @return bool
22633+
* @static
22634+
*/
22635+
public static function chunkByIdDesc($count, $callback, $column = null, $alias = null)
22636+
{
22637+
/** @var \Illuminate\Database\Eloquent\Builder $instance */
22638+
return $instance->chunkByIdDesc($count, $callback, $column, $alias);
22639+
}
22640+
22641+
/**
22642+
* Chunk the results of a query by comparing IDs in a given order.
22643+
*
22644+
* @param int $count
22645+
* @param callable $callback
22646+
* @param string|null $column
22647+
* @param string|null $alias
22648+
* @param bool $descending
22649+
* @return bool
22650+
* @static
22651+
*/
22652+
public static function orderedChunkById($count, $callback, $column = null, $alias = null, $descending = false)
22653+
{
22654+
/** @var \Illuminate\Database\Eloquent\Builder $instance */
22655+
return $instance->orderedChunkById($count, $callback, $column, $alias, $descending);
22656+
}
22657+
2259522658
/**
2259622659
* Execute a callback over each item while chunking by ID.
2259722660
*

app/Http/Controllers/HomeController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class HomeController extends Controller
1414
public function __invoke(Request $request)
1515
{
1616
$settings = new GeneralSettings();
17-
if (!$settings->public_dashboard_enabled) {
17+
if (! $settings->public_dashboard_enabled) {
1818
return redirect()->route('filament.admin.auth.login');
1919
}
2020

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",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.26.2",
21+
"laravel/framework": "^10.28",
2222
"laravel/prompts": "^0.1.11",
2323
"laravel/sanctum": "^3.3.1",
2424
"laravel/tinker": "^2.8.2",

0 commit comments

Comments
 (0)