Maison > développement back-end > tutoriel php > 每天laravel-20160725| Genaerator command-2

每天laravel-20160725| Genaerator command-2

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Libérer: 2016-06-20 12:30:25
original
849 Les gens l'ont consulté

/** * Get the stub file for the generator. * * @return string */abstract protected function getStub();//Get the stub file for the generator/** * Execute the console command. * * @return bool|null */public function fire()//Execute the console command{    $name = $this->parseName($this->getNameInput());// $name use a function to parse it and use a function to get Input name    $path = $this->getPath($name);// from the name get path ,    if ($this->alreadyExists($this->getNameInput())) {// if know the name        $this->error($this->type.' already exists!');        return false;    }// tell the false messages    $this->makeDirectory($path);// make dir    $this->files->put($path, $this->buildClass($name));// put file to the path    $this->info($this->type.' created successfully.');// write log.}
Copier après la connexion


source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal