api/laravel/Foundation/Console/ConfigCacheCommand.yaml

83 lines
2 KiB
YAML
Raw Permalink Normal View History

2024-09-26 09:03:21 +00:00
name: ConfigCacheCommand
class_comment: null
dependencies:
- name: Command
type: class
source: Illuminate\Console\Command
- name: ConsoleKernelContract
type: class
source: Illuminate\Contracts\Console\Kernel
- name: Filesystem
type: class
source: Illuminate\Filesystem\Filesystem
- name: LogicException
type: class
source: LogicException
- name: AsCommand
type: class
source: Symfony\Component\Console\Attribute\AsCommand
- name: Throwable
type: class
source: Throwable
properties:
- name: name
visibility: protected
comment: '# * The console command name.
# *
# * @var string'
- name: description
visibility: protected
comment: '# * The console command description.
# *
# * @var string'
- name: files
visibility: protected
comment: '# * The filesystem instance.
# *
# * @var \Illuminate\Filesystem\Filesystem'
methods:
- name: __construct
visibility: public
parameters:
- name: files
comment: "# * The console command name.\n# *\n# * @var string\n# */\n# protected\
\ $name = 'config:cache';\n# \n# /**\n# * The console command description.\n#\
\ *\n# * @var string\n# */\n# protected $description = 'Create a cache file for\
\ faster configuration loading';\n# \n# /**\n# * The filesystem instance.\n# *\n\
# * @var \\Illuminate\\Filesystem\\Filesystem\n# */\n# protected $files;\n# \n\
# /**\n# * Create a new config cache command instance.\n# *\n# * @param \\Illuminate\\\
Filesystem\\Filesystem $files\n# * @return void"
- name: handle
visibility: public
parameters: []
comment: '# * Execute the console command.
# *
# * @return void
# *
# * @throws \LogicException'
- name: getFreshConfiguration
visibility: protected
parameters: []
comment: '# * Boot a fresh copy of the application configuration.
# *
# * @return array'
traits:
- Illuminate\Console\Command
- Illuminate\Filesystem\Filesystem
- LogicException
- Symfony\Component\Console\Attribute\AsCommand
- Throwable
interfaces: []