CommonPreconditions.php
Namespace
PhpTuf\ComposerStager\Internal\Precondition\ServiceFile
-
vendor/
php-tuf/ composer-stager/ src/ Internal/ Precondition/ Service/ CommonPreconditions.php
View source
<?php
declare (strict_types=1);
namespace PhpTuf\ComposerStager\Internal\Precondition\Service;
use PhpTuf\ComposerStager\API\Environment\Service\EnvironmentInterface;
use PhpTuf\ComposerStager\API\Precondition\Service\ActiveAndStagingDirsAreDifferentInterface;
use PhpTuf\ComposerStager\API\Precondition\Service\ActiveDirIsReadyInterface;
use PhpTuf\ComposerStager\API\Precondition\Service\CommonPreconditionsInterface;
use PhpTuf\ComposerStager\API\Precondition\Service\ComposerIsAvailableInterface;
use PhpTuf\ComposerStager\API\Precondition\Service\HostSupportsRunningProcessesInterface;
use PhpTuf\ComposerStager\API\Precondition\Service\NoNestingOnWindowsInterface;
use PhpTuf\ComposerStager\API\Precondition\Service\RsyncIsAvailableInterface;
use PhpTuf\ComposerStager\API\Translation\Factory\TranslatableFactoryInterface;
use PhpTuf\ComposerStager\API\Translation\Value\TranslatableInterface;
/**
* @package Precondition
*
* @internal Don't depend directly on this class. It may be changed or removed at any time without notice.
*/
final class CommonPreconditions extends AbstractPreconditionsTree implements CommonPreconditionsInterface {
public function __construct(EnvironmentInterface $environment, TranslatableFactoryInterface $translatableFactory, ActiveAndStagingDirsAreDifferentInterface $activeAndStagingDirsAreDifferent, ActiveDirIsReadyInterface $activeDirIsReady, ComposerIsAvailableInterface $composerIsAvailable, HostSupportsRunningProcessesInterface $hostSupportsRunningProcesses, NoNestingOnWindowsInterface $noNestingOnWindows, RsyncIsAvailableInterface $rsyncIsAvailable) {
parent::__construct($environment, $translatableFactory, $activeAndStagingDirsAreDifferent, $activeDirIsReady, $composerIsAvailable, $hostSupportsRunningProcesses, $noNestingOnWindows, $rsyncIsAvailable);
}
public function getName() : TranslatableInterface {
return $this->t('Common preconditions');
}
public function getDescription() : TranslatableInterface {
return $this->t('The preconditions common to all operations.');
}
protected function getFulfilledStatusMessage() : TranslatableInterface {
return $this->t('The common preconditions are fulfilled.');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
CommonPreconditions | @package Precondition |