Created
July 11, 2018 16:04
-
-
Save vdubyna/792f9a2c796443f33f0a563f1dad2d7b to your computer and use it in GitHub Desktop.
Revisions
-
Volodymyr created this gist
Jul 11, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,69 @@ #!/usr/bin/env php <?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Application; if (PHP_SAPI !== 'cli') { echo 'dev/run-script.php must be run as a CLI application'; exit(1); } try { require __DIR__ . '/../app/bootstrap.php'; } catch (\Exception $e) { echo 'Autoload error: ' . $e->getMessage(); exit(1); } class RunScriptCommand extends Command { /** @var \Magento\Framework\DB\Adapter\Pdo\Mysql */ protected $connection; protected function configure() { $bootstrap = \Magento\Framework\App\Bootstrap::create(BP, []); $objectManager = $bootstrap->getObjectManager(); $this->connection = $objectManager->get('Magento\Framework\App\ResourceConnection') ->getConnection(); $this ->setName('dev:run-script') ->setDescription('Run script'); } protected function execute(InputInterface $input, OutputInterface $output) { $output->writeln("Run script"); // Run sql queries //$rows = $this->connection->fetchAll($sql); // Load order //$order = $this->objectManager->create('Magento\Sales\Model\Order'); //$order->loadByIncrementId($orderNumber); } } try { $handler = new \Magento\Framework\App\ErrorHandler(); set_error_handler([$handler, 'handler']); $application = new Application(); $application->add(new RunScriptCommand()); $application->run(); } catch (\Exception $e) { while ($e) { echo $e->getMessage(); echo $e->getTraceAsString(); echo "\n\n"; $e = $e->getPrevious(); } exit(\Magento\Framework\Console\Cli::RETURN_FAILURE); }