Your IP : 216.73.216.220


Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Package/MetaData/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Package/MetaData/PackageConstraint.php

<?php

/*
 * This file is part of the TYPO3 CMS project.
 *
 * It is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, either version 2
 * of the License, or any later version.
 *
 * For the full copyright and license information, please read the
 * LICENSE.txt file that was distributed with this source code.
 *
 * The TYPO3 project - inspiring people to share!
 */

namespace TYPO3\CMS\Core\Package\MetaData;

/**
 * Package constraint meta model
 */
class PackageConstraint
{
    /**
     * One of depends, conflicts or suggests
     * @var string
     */
    protected $constraintType;

    /**
     * The constraint name or value
     * @var string
     */
    protected $value;

    /**
     * Minimum version for the constraint
     * @var string|null
     */
    protected $minVersion;

    /**
     * Maximum version for the constraint
     * @var string|null
     */
    protected $maxVersion;

    /**
     * Meta data constraint constructor
     *
     * @param string $constraintType
     * @param string $value
     * @param string $minVersion
     * @param string $maxVersion
     */
    public function __construct($constraintType, $value, $minVersion = null, $maxVersion = null)
    {
        $this->constraintType = $constraintType;
        $this->value = $value;
        $this->minVersion = $minVersion;
        $this->maxVersion = $maxVersion;
    }

    /**
     * @return string The constraint name or value
     */
    public function getValue()
    {
        return $this->value;
    }

    /**
     * @return string The constraint type (depends, conflicts, suggests)
     */
    public function getConstraintType()
    {
        return $this->constraintType;
    }
}