您好,欢迎访问一九零五行业门户网

每天laravel-20160724|abstract Genaerator-1

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.
其它类似信息

推荐信息