示例#1
0
 /**
  * @param string             $name
  * @param ContainerInterface $dic
  *
  * @throws \Symfony\Component\Console\Exception\InvalidArgumentException
  * @throws \Symfony\Component\Console\Exception\LogicException
  */
 public function __construct(string $name, ContainerInterface $dic)
 {
     $this->setDescription('Retrieves SQL from files and updates schema');
     $this->setName($name);
     $this->setDic($dic);
     parent::__construct($name);
 }