platform/api/laravel/Cache/Console/CacheTableCommand.yaml
2024-09-02 10:44:11 -07:00

53 lines
1.4 KiB
YAML

name: CacheTableCommand
class_comment: null
dependencies:
- name: MigrationGeneratorCommand
type: class
source: Illuminate\Console\MigrationGeneratorCommand
- name: AsCommand
type: class
source: Symfony\Component\Console\Attribute\AsCommand
properties:
- name: name
visibility: protected
comment: '# * The console command name.
# *
# * @var string'
- name: aliases
visibility: protected
comment: '# * The console command name aliases.
# *
# * @var array'
- name: description
visibility: protected
comment: '# * The console command description.
# *
# * @var string'
methods:
- name: migrationTableName
visibility: protected
parameters: []
comment: "# * The console command name.\n# *\n# * @var string\n# */\n# protected\
\ $name = 'make:cache-table';\n# \n# /**\n# * The console command name aliases.\n\
# *\n# * @var array\n# */\n# protected $aliases = ['cache:table'];\n# \n# /**\n\
# * The console command description.\n# *\n# * @var string\n# */\n# protected\
\ $description = 'Create a migration for the cache database table';\n# \n# /**\n\
# * Get the migration table name.\n# *\n# * @return string"
- name: migrationStubFile
visibility: protected
parameters: []
comment: '# * Get the path to the migration stub file.
# *
# * @return string'
traits:
- Illuminate\Console\MigrationGeneratorCommand
- Symfony\Component\Console\Attribute\AsCommand
interfaces: []