Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Cache/Console/CacheTableCommand.php
Строк: 47
<?php

namespace IlluminateCacheConsole;

use 
IlluminateConsoleMigrationGeneratorCommand;
use 
SymfonyComponentConsoleAttributeAsCommand;

#[AsCommand(name: 'cache:table')]
class CacheTableCommand extends MigrationGeneratorCommand
{
    
/**
     * The console command name.
     *
     * @var string
     */
    
protected $name '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';
    }
}
Онлайн: 1
Реклама