상속: extends Symfony\Component\Console\Command\Command
예제 #1
0
 /**
  * @param Store $cache
  * @param ForumWebApp $forum
  * @param AdminWebApp $admin
  */
 public function __construct(Store $cache, ForumWebApp $forum, AdminWebApp $admin)
 {
     $this->cache = $cache;
     $this->forum = $forum;
     $this->admin = $admin;
     parent::__construct();
 }
예제 #2
0
 /**
  * @param MigrationCreator $creator
  */
 public function __construct(MigrationCreator $creator)
 {
     parent::__construct();
     $this->creator = $creator;
 }
예제 #3
0
 /**
  * @param Application $application
  * @param Filesystem $filesystem
  */
 public function __construct(Application $application, Filesystem $filesystem)
 {
     $this->application = $application;
     parent::__construct();
     $this->filesystem = $filesystem;
 }
예제 #4
0
파일: InfoCommand.php 프로젝트: Luceos/core
 /**
  * @param ExtensionManager $extensions
  * @param array $config
  */
 public function __construct(ExtensionManager $extensions, array $config)
 {
     $this->extensions = $extensions;
     $this->config = $config;
     parent::__construct();
 }
예제 #5
0
 /**
  * @param Container $container
  */
 public function __construct(Container $container)
 {
     $this->container = $container;
     parent::__construct();
 }