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
Config.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\Illuminate\Support\Facades; |
| 4 | |
| 5 | /** |
| 6 | * @method static array all() |
| 7 | * @method static bool has($key) |
| 8 | * @method static mixed get($key, $default = null) |
| 9 | * @method static void prepend($key, $value) |
| 10 | * @method static void push($key, $value) |
| 11 | * @method static void set($key, $value = null) |
| 12 | * |
| 13 | * @see \Illuminate\Config\Repository |
| 14 | * @internal |
| 15 | */ |
| 16 | class Config extends Facade |
| 17 | { |
| 18 | /** |
| 19 | * Get the registered name of the component. |
| 20 | * |
| 21 | * @return string |
| 22 | */ |
| 23 | protected static function getFacadeAccessor() |
| 24 | { |
| 25 | return 'config'; |
| 26 | } |
| 27 | } |
| 28 |