✏️ 正在编辑: ImportDoctrineCommand.php
路径:
/home/bpioifn/www/pigmentse/vendor/doctrine/doctrine-bundle/Command/Proxy/ImportDoctrineCommand.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php namespace Doctrine\Bundle\DoctrineBundle\Command\Proxy; use Doctrine\DBAL\Tools\Console\Command\ImportCommand; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; /** * Loads an SQL file and executes it. */ class ImportDoctrineCommand extends ImportCommand { /** * {@inheritDoc} */ protected function configure() { parent::configure(); $this ->setName('doctrine:database:import') ->addOption('connection', null, InputOption::VALUE_OPTIONAL, 'The connection to use for this command'); } /** * {@inheritDoc} */ protected function execute(InputInterface $input, OutputInterface $output) { DoctrineCommandHelper::setApplicationConnection($this->getApplication(), $input->getOption('connection')); return parent::execute($input, $output); } }
💾 保存文件
← 返回文件管理器