Blame view
public/vendor/illuminate/support/Facades/Config.php
557 Bytes
86143e36f Коммит вторник |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<?php namespace Illuminate\Support\Facades; /** * @method static array all() * @method static bool has($key) * @method static mixed get($key, $default = null) * @method static void prepend($key, $value) * @method static void push($key, $value) * @method static void set($key, $value = null) * * @see \Illuminate\Config\Repository */ class Config extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'config'; } } |