Sha256: 725c0ab7978ebf2b93fda9dde5cd2062e0ea60d03ac00782b1c64a3284a8b3ce

Contents?: true

Size: 606 Bytes

Versions: 42

Compression:

Stored size: 606 Bytes

Contents

<?php

/*
 * This file is part of composer/semver.
 *
 * (c) Composer <https://github.com/composer>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace Composer\Semver\Constraint;

interface ConstraintInterface
{
    /**
     * @param ConstraintInterface $provider
     *
     * @return bool
     */
    public function matches(ConstraintInterface $provider);

    /**
     * @return string
     */
    public function getPrettyString();

    /**
     * @return string
     */
    public function __toString();
}

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
dependabot-composer-0.94.7 helpers/vendor/composer/semver/src/Constraint/ConstraintInterface.php
dependabot-composer-0.90.0 helpers/vendor/composer/semver/src/Constraint/ConstraintInterface.php