ActiveAndStagingDirsAreDifferent.php
Namespace
PhpTuf\ComposerStager\Internal\Precondition\ServiceFile
-
vendor/
php-tuf/ composer-stager/ src/ Internal/ Precondition/ Service/ ActiveAndStagingDirsAreDifferent.php
View source
<?php
declare (strict_types=1);
namespace PhpTuf\ComposerStager\Internal\Precondition\Service;
use PhpTuf\ComposerStager\API\Exception\PreconditionException;
use PhpTuf\ComposerStager\API\Path\Value\PathInterface;
use PhpTuf\ComposerStager\API\Path\Value\PathListInterface;
use PhpTuf\ComposerStager\API\Precondition\Service\ActiveAndStagingDirsAreDifferentInterface;
use PhpTuf\ComposerStager\API\Process\Service\ProcessInterface;
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 ActiveAndStagingDirsAreDifferent extends AbstractPrecondition implements ActiveAndStagingDirsAreDifferentInterface {
public function getName() : TranslatableInterface {
return $this->t('Active and staging directories are different');
}
public function getDescription() : TranslatableInterface {
return $this->t('The active and staging directories cannot be the same.');
}
protected function getFulfilledStatusMessage() : TranslatableInterface {
return $this->t('The active and staging directories are different.');
}
protected function doAssertIsFulfilled(PathInterface $activeDir, PathInterface $stagingDir, ?PathListInterface $exclusions = null, int $timeout = ProcessInterface::DEFAULT_TIMEOUT) : void {
if ($activeDir->absolute() === $stagingDir->absolute()) {
throw new PreconditionException($this, $this->t('The active and staging directories are the same.', null, $this->d()
->exceptions()));
}
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ActiveAndStagingDirsAreDifferent | @package Precondition |