Sha256: e9fe7d6bd3b67f9094d6e8617ad943e0fab3e04b29c42bf424fe99acd5b2eeda
Contents?: true
Size: 1020 Bytes
Versions: 42
Compression:
Stored size: 1020 Bytes
Contents
<?php /* * This file is part of Composer. * * (c) Nils Adermann <naderman@naderman.de> * Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\DependencyResolver\Operation; use Composer\Package\PackageInterface; /** * Abstract solver operation class. * * @author Konstantin Kudryashov <ever.zet@gmail.com> */ abstract class SolverOperation implements OperationInterface { protected $reason; /** * Initializes operation. * * @param string $reason operation reason */ public function __construct($reason = null) { $this->reason = $reason; } /** * Returns operation reason. * * @return string */ public function getReason() { return $this->reason; } protected function formatVersion(PackageInterface $package) { return $package->getFullPrettyVersion(); } }
Version data entries
42 entries across 42 versions & 1 rubygems