/**
  * Constructor
  *
  * @author Verron Knowles <*****@*****.**>
  * @param $container
  * @param $files
  * @param $database
  * @param $config
  * @return void
  */
 public function __construct(Container $container, FileSystem $files, DatabaseManager $database, ConfigRepository $config)
 {
     parent::__construct($files);
     $this->app = $container;
     $this->database = $database;
     $this->config = $config;
 }
 /**
  * @param Filesystem $files
  * @param Composer $composer
  * @param Repository $config
  */
 public function __construct(Filesystem $files, Composer $composer, Repository $config)
 {
     parent::__construct($files);
     $this->config = $config;
     $this->composer = $composer;
     $this->settings = new Fluent(['paths' => $config->get('broadway.generators.paths')]);
 }
 /**
  * Create a new config clear command instance.
  *
  * @param Filesystem $files
  */
 public function __construct(Filesystem $files)
 {
     parent::__construct($files);
     $this->useEloquent = config('json-api.generator.use-eloquent', true);
     $this->subNamespace = config('json-api.generator.namespace', 'JsonApi');
     $this->namespaceByResource = config('json-api.generator.by-resource', true);
     $this->stubsDirectory = __DIR__ . '/../../../stubs';
 }
 public function __construct(Filesystem $files, FormGenerator $formGenerator)
 {
     parent::__construct($files);
     $this->formGenerator = $formGenerator;
 }
 /**
  * Set the dependencies.
  *
  * @param  \Illuminate\Filesystem\Filesystem  $files
  * @return void
  */
 public function __construct(Filesystem $files, PipelineRepositoryInterface $pipelines, InflectorInterface $inflector)
 {
     parent::__construct($files);
     $this->pipelines = $pipelines;
     $this->inflector = $inflector;
 }
示例#6
0
 /**
  * Create a new command instance.
  *
  * @return void
  */
 public function __construct(Filesystem $files)
 {
     parent::__construct($files);
     $this->files = $files;
 }
示例#7
0
 /**
  * Create a new command instance.
  *
  * @param  \Illuminate\Filesystem\Filesystem  $files
  * @param  \Illuminate\Foundation\Composer  $composer
  * @return void
  */
 public function __construct(Filesystem $files, Composer $composer)
 {
     parent::__construct($files);
     $this->composer = $composer;
 }
 /**
  * Create a new command instance.
  *
  * @return void
  */
 public function __construct(Filesystem $files)
 {
     parent::__construct($files);
 }
 /**
  * @param Filesystem $fileSystem
  */
 public function __construct(Filesystem $fileSystem)
 {
     $this->loadConfig();
     parent::__construct($fileSystem);
 }
 function __construct(Filesystem $file, Container $app)
 {
     parent::__construct($file);
     $this->app = $app;
 }
 /**
  * Create a new command instance.
  *
  * @param Filesystem $files
  * @param Modules $module
  */
 public function __construct(PackagerHelper $helper)
 {
     parent::__construct($helper);
     $this->helper = $helper;
 }