欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

每天laravel-20160724|abstract Genaerator-1

程序员文章站 2022-06-04 14:42:46
...
namespace Illuminate\Console;use Illuminate\Support\Str;use Illuminate\Filesystem\Filesystem;use Symfony\Component\Console\Input\InputArgument;// use namespaceabstract class GeneratorCommand extends Command// a better class that is G{    /**     * The filesystem instance.     *     * @var \Illuminate\Filesystem\Filesystem     */    protected $files;// The file system instance    /**     * The type of class being generated.     *     * @var string     */    protected $type;// The type of class being generated.    /**     * Create a new controller creator command instance.     *     * @param  \Illuminate\Filesystem\Filesystem  $files     * @return void     */    public function __construct(Filesystem $files)    {        parent::__construct();        $this->files = $files;    }// Create a new controller creator command instance.