App.php
2 years ago
Artisan.php
2 years ago
Auth.php
2 years ago
Blade.php
2 years ago
Broadcast.php
2 years ago
Bus.php
2 years ago
Cache.php
2 years ago
Config.php
2 years ago
Cookie.php
2 years ago
Crypt.php
2 years ago
DB.php
2 years ago
Date.php
2 years ago
Event.php
2 years ago
Facade.php
2 years ago
File.php
2 years ago
Gate.php
2 years ago
Hash.php
2 years ago
Http.php
2 years ago
Lang.php
2 years ago
Log.php
2 years ago
Mail.php
2 years ago
Notification.php
2 years ago
ParallelTesting.php
2 years ago
Password.php
2 years ago
Queue.php
2 years ago
RateLimiter.php
2 years ago
Redirect.php
2 years ago
Redis.php
2 years ago
Request.php
2 years ago
Response.php
2 years ago
Route.php
2 years ago
Schema.php
2 years ago
Session.php
2 years ago
Storage.php
2 years ago
URL.php
2 years ago
Validator.php
2 years ago
View.php
2 years ago
Session.php
47 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\Illuminate\Support\Facades; |
| 4 | |
| 5 | /** |
| 6 | * @method static \SessionHandlerInterface getHandler() |
| 7 | * @method static array all() |
| 8 | * @method static bool exists(string|array $key) |
| 9 | * @method static bool handlerNeedsRequest() |
| 10 | * @method static bool has(string|array $key) |
| 11 | * @method static bool isStarted() |
| 12 | * @method static bool migrate(bool $destroy = false) |
| 13 | * @method static bool save() |
| 14 | * @method static bool start() |
| 15 | * @method static mixed get(string $key, $default = null) |
| 16 | * @method static mixed flash(string $key, $value = true) |
| 17 | * @method static mixed pull(string $key, $default = null) |
| 18 | * @method static mixed remove(string $key) |
| 19 | * @method static string getId() |
| 20 | * @method static string getName() |
| 21 | * @method static string token() |
| 22 | * @method static string|null previousUrl() |
| 23 | * @method static void flush() |
| 24 | * @method static void forget(string|array $keys) |
| 25 | * @method static void push(string $key, mixed $value) |
| 26 | * @method static void put(string|array $key, $value = null) |
| 27 | * @method static void setId(string $id) |
| 28 | * @method static void setPreviousUrl(string $url) |
| 29 | * @method static void setRequestOnHandler(\Illuminate\Http\Request $request) |
| 30 | * |
| 31 | * @see \Illuminate\Session\SessionManager |
| 32 | * @see \Illuminate\Session\Store |
| 33 | * @internal |
| 34 | */ |
| 35 | class Session extends Facade |
| 36 | { |
| 37 | /** |
| 38 | * Get the registered name of the component. |
| 39 | * |
| 40 | * @return string |
| 41 | */ |
| 42 | protected static function getFacadeAccessor() |
| 43 | { |
| 44 | return 'session'; |
| 45 | } |
| 46 | } |
| 47 |