File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static void set(mixed $timezone = null)
9
+ * @method static void setCurrent(mixed $timezone = null)
10
+ * @method static \Carbon\CarbonTimeZone current()
11
+ * @method static void setStorage(mixed $timezone = null)
12
+ * @method static \Carbon\CarbonTimeZone storage()
13
+ * @method static \Carbon\CarbonInterface now()
14
+ * @method static \Carbon\CarbonInterface date(mixed $value, callable|null $maker)
15
+ * @method static \Carbon\CarbonInterface store(mixed $value, callable|null $maker)
16
+ */
7
17
class Timezone extends Facade
8
18
{
9
- public static function getFacadeAccessor ()
19
+ /**
20
+ * Get the registered name of the component.
21
+ */
22
+ public static function getFacadeAccessor (): string
10
23
{
11
24
return \Whitecube \LaravelTimezones \Timezone::class;
12
25
}
You can’t perform that action at this time.
0 commit comments