files = $files;// a file to set
        $this->composer = $composer;// a composer instance
    }

    /**
     * Execute the console command.
     *
     * @return void
     */
    public function fire()// fire like start,or run or execute the console command
    {
        $fullPath = $this->createBaseMigration();// create base Migration[move]

        $this->files->put($fullPath, $this->files->get(__DIR__.'/stubs/cache.stub'));// form the file cache to save the value to the table

        $this->info('Migration created successfully!');// log info

        $this->composer->dumpAutoloads();// user composer api function .
    }

    /**
     * Create a base migration file for the table.
     *
     * @return string
     */
    protected function createBaseMigration()// create a base migration file for the table.
    {
        $name = 'create_cache_table';// a name create_cache_table

        $path = $this->laravel->databasePath().'/migrations';// has a databasePath()

        return $this->laravel['migration.creator']->create($name, $path);
    }// a base full function
}