![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-deploy/Strategy/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Strategy; use Magento\Deploy\Package\PackagePool; use Magento\Deploy\Package\Package; use Magento\Deploy\Process\Queue; /** * Compact deployment strategy implementation */ class CompactDeploy implements StrategyInterface { /** * Package pool object * * @var PackagePool */ private $packagePool; /** * Deployment queue * * @var Queue */ private $queue; /** * CompactDeploy constructor * * @param PackagePool $packagePool * @param Queue $queue */ public function __construct( PackagePool $packagePool, Queue $queue ) { $this->packagePool = $packagePool; $this->queue = $queue; } /** * @inheritdoc */ public function deploy(array $options) { $packages = $this->packagePool->getPackagesForDeployment($options); foreach ($packages as $package) { /* @var Package $package */ // set closest ancestor package as parent $parentPackages = $package->getParentPackages(); $package->setParent(array_pop($parentPackages)); if (!$package->isVirtual()) { // flag is required to enable "Package Map files" post-processor /* @see \Magento\Deploy\Package\Processor\PostProcessor\Map */ $package->setParam('build_map', true); } // set all parent packages as dependencies for current package deployment task $this->queue->add($package, $package->getParentPackages()); } $this->queue->process(); return $packages; } }