init
This commit is contained in:
88
backend/vendor/symfony/flex/src/InformationOperation.php
vendored
Normal file
88
backend/vendor/symfony/flex/src/InformationOperation.php
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
|
||||
namespace Symfony\Flex;
|
||||
|
||||
use Composer\DependencyResolver\Operation\OperationInterface;
|
||||
use Composer\Package\PackageInterface;
|
||||
|
||||
/**
|
||||
* @author Maxime Hélias <maximehelias16@gmail.com>
|
||||
*/
|
||||
class InformationOperation implements OperationInterface
|
||||
{
|
||||
private $package;
|
||||
private $recipeRef;
|
||||
private $version;
|
||||
|
||||
public function __construct(PackageInterface $package)
|
||||
{
|
||||
$this->package = $package;
|
||||
}
|
||||
|
||||
/**
|
||||
* Call to get information about a specific version of a recipe.
|
||||
*
|
||||
* Both $recipeRef and $version would normally come from the symfony.lock file.
|
||||
*/
|
||||
public function setSpecificRecipeVersion(string $recipeRef, string $version)
|
||||
{
|
||||
$this->recipeRef = $recipeRef;
|
||||
$this->version = $version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns package instance.
|
||||
*
|
||||
* @return PackageInterface
|
||||
*/
|
||||
public function getPackage()
|
||||
{
|
||||
return $this->package;
|
||||
}
|
||||
|
||||
public function getRecipeRef(): ?string
|
||||
{
|
||||
return $this->recipeRef;
|
||||
}
|
||||
|
||||
public function getVersion(): ?string
|
||||
{
|
||||
return $this->version;
|
||||
}
|
||||
|
||||
public function getJobType()
|
||||
{
|
||||
return 'information';
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getOperationType()
|
||||
{
|
||||
return 'information';
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function show($lock)
|
||||
{
|
||||
$pretty = method_exists($this->package, 'getFullPrettyVersion') ? $this->package->getFullPrettyVersion() : $this->formatVersion($this->package);
|
||||
|
||||
return 'Information '.$this->package->getPrettyName().' ('.$pretty.')';
|
||||
}
|
||||
|
||||
public function __toString()
|
||||
{
|
||||
return $this->show(false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Compatibility for Composer 1.x, not needed in Composer 2.
|
||||
*/
|
||||
public function getReason()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user