/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Cache/Console/CacheTableCommand.php
51 строка
1 KB
Denys Finchenko
Sync property docblocks with their parent declarations (#60991)
03 авг 2026, 01:17
Не верифицирован
03 авг 2026, 01:17
251dc09
Код
Авторство
О чём код?
<?php namespace Illuminate\Cache\Console; use Illuminate\Console\MigrationGeneratorCommand; use Symfony\Component\Console\Attribute\AsCommand; #[AsCommand(name: 'make:cache-table', aliases: ['cache:table'])] class CacheTableCommand extends MigrationGeneratorCommand { /** * The name and signature of the console command. * * @var string */ protected $signature = 'make:cache-table'; /** * The console command name aliases. * * @var string[] */ protected $aliases = ['cache:table']; /** * The console command description. * * @var string */ protected $description = 'Create a migration for the cache database table'; /** * Get the migration table name. * * @return string */ protected function migrationTableName() { return 'cache'; } /** * Get the path to the migration stub file. * * @return string */ protected function migrationStubFile() { return __DIR__.'/stubs/cache.stub'; } }