Skip to content

Commit 968e1d4

Browse files
committed
fix: header type in SimpleTable svelte
1 parent 16b6f3f commit 968e1d4

File tree

4 files changed

+143
-79
lines changed

4 files changed

+143
-79
lines changed

_ide_helper.php

Lines changed: 38 additions & 4 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.5.1.
7+
* Generated for Laravel 10.7.1.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -1762,7 +1762,7 @@ public static function bootstrapWithoutBootingProviders()
17621762
/**
17631763
* Set the Artisan application instance.
17641764
*
1765-
* @param \Illuminate\Console\Application $artisan
1765+
* @param \Illuminate\Console\Application|null $artisan
17661766
* @return void
17671767
* @static
17681768
*/
@@ -7834,7 +7834,7 @@ public static function forgetDrivers()
78347834
* @method static \Illuminate\Http\Client\PendingRequest sink(string|resource $to)
78357835
* @method static \Illuminate\Http\Client\PendingRequest timeout(int $seconds)
78367836
* @method static \Illuminate\Http\Client\PendingRequest connectTimeout(int $seconds)
7837-
* @method static \Illuminate\Http\Client\PendingRequest retry(int $times, int $sleepMilliseconds = 0, callable|null $when = null, bool $throw = true)
7837+
* @method static \Illuminate\Http\Client\PendingRequest retry(int $times, Closure|int $sleepMilliseconds = 0, callable|null $when = null, bool $throw = true)
78387838
* @method static \Illuminate\Http\Client\PendingRequest withOptions(array $options)
78397839
* @method static \Illuminate\Http\Client\PendingRequest withMiddleware(callable $middleware)
78407840
* @method static \Illuminate\Http\Client\PendingRequest beforeSending(callable $callback)
@@ -9561,6 +9561,8 @@ public static function setDefaultDriver($name)
95619561
* @method static \Illuminate\Contracts\Process\ProcessResult run(array|string|null $command = null, callable|null $output = null)
95629562
* @method static \Illuminate\Process\InvokedProcess start(array|string|null $command = null, callable $output = null)
95639563
* @method static \Illuminate\Process\PendingProcess withFakeHandlers(array $fakeHandlers)
9564+
* @method static \Illuminate\Process\PendingProcess|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
9565+
* @method static \Illuminate\Process\PendingProcess|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
95649566
* @see \Illuminate\Process\PendingProcess
95659567
* @see \Illuminate\Process\Factory
95669568
*/
@@ -9745,6 +9747,18 @@ public static function pool($callback)
97459747
{
97469748
/** @var \Illuminate\Process\Factory $instance */
97479749
return $instance->pool($callback);
9750+
}
9751+
/**
9752+
* Start defining a series of piped processes.
9753+
*
9754+
* @param callable $callback
9755+
* @return \Illuminate\Process\Pipe
9756+
* @static
9757+
*/
9758+
public static function pipe($callback, $output = null)
9759+
{
9760+
/** @var \Illuminate\Process\Factory $instance */
9761+
return $instance->pipe($callback, $output);
97489762
}
97499763
/**
97509764
* Run a pool of processes and wait for them to finish executing.
@@ -10398,7 +10412,7 @@ public static function for($name, $callback)
1039810412
* Get the given named rate limiter.
1039910413
*
1040010414
* @param string $name
10401-
* @return \Closure
10415+
* @return \Closure|null
1040210416
* @static
1040310417
*/
1040410418
public static function limiter($name)
@@ -18779,6 +18793,26 @@ class Actions {
1877918793
/**
1878018794
*
1878118795
*
18796+
* @param \Lorisleiva\Actions\class-string<JobDecorator> $jobDecoratorClass
18797+
* @static
18798+
*/
18799+
public static function useJobDecorator($jobDecoratorClass)
18800+
{
18801+
return \Lorisleiva\Actions\ActionManager::useJobDecorator($jobDecoratorClass);
18802+
}
18803+
/**
18804+
*
18805+
*
18806+
* @param \Lorisleiva\Actions\class-string<JobDecorator&ShouldBeUnique> $uniqueJobDecoratorClass
18807+
* @static
18808+
*/
18809+
public static function useUniqueJobDecorator($uniqueJobDecoratorClass)
18810+
{
18811+
return \Lorisleiva\Actions\ActionManager::useUniqueJobDecorator($uniqueJobDecoratorClass);
18812+
}
18813+
/**
18814+
*
18815+
*
1878218816
* @static
1878318817
*/
1878418818
public static function setDesignPatterns($designPatterns)

_ide_helper_actions.php

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,33 @@
11
<?php
22

3+
namespace App\Actions\Admin\CMS;
4+
5+
/**
6+
*/
7+
class ContactMessagesDelete
8+
{
9+
}
10+
namespace App\Actions\Admin\Cms;
11+
12+
/**
13+
*/
14+
class ContactMessages
15+
{
16+
}
317
namespace App\Actions\Admin;
418

519
/**
620
*/
721
class Dashboard
822
{
923
}
24+
namespace App\Actions\Admin\Profile;
25+
26+
/**
27+
*/
28+
class MainProfile
29+
{
30+
}
1031
namespace App\Actions\Admin\Settings;
1132

1233
/**
@@ -87,6 +108,13 @@ class PolicyPages
87108
class Dashboard
88109
{
89110
}
111+
namespace App\Actions\User\Profile;
112+
113+
/**
114+
*/
115+
class MainProfile
116+
{
117+
}
90118
namespace App\Actions;
91119

92120
/**

0 commit comments

Comments
 (0)