Heim >Backend-Entwicklung >PHP-Tutorial >每天laravel-20160724|abstract Genaerator-1

每天laravel-20160724|abstract Genaerator-1

WBOY
WBOYOriginal
2016-06-23 13:08:421114Durchsuche

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.


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn