‪TYPO3CMS  11.5
PackageConstraint.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
22 {
27  protected ‪$constraintType;
28 
33  protected ‪$value;
34 
39  protected ‪$minVersion;
40 
45  protected ‪$maxVersion;
46 
56  {
57  $this->constraintType = ‪$constraintType;
58  $this->value = ‪$value;
59  $this->minVersion = ‪$minVersion;
60  $this->maxVersion = ‪$maxVersion;
61  }
62 
66  public function ‪getValue()
67  {
68  return ‪$this->value;
69  }
70 
74  public function ‪getConstraintType()
75  {
77  }
78 }
‪TYPO3\CMS\Core\Package\MetaData\PackageConstraint\getConstraintType
‪string getConstraintType()
Definition: PackageConstraint.php:70
‪TYPO3\CMS\Core\Package\MetaData\PackageConstraint\getValue
‪string getValue()
Definition: PackageConstraint.php:62
‪TYPO3\CMS\Core\Package\MetaData\PackageConstraint\__construct
‪__construct($constraintType, $value, $minVersion=null, $maxVersion=null)
Definition: PackageConstraint.php:51
‪TYPO3\CMS\Core\Package\MetaData\PackageConstraint\$minVersion
‪string null $minVersion
Definition: PackageConstraint.php:36
‪TYPO3\CMS\Core\Package\MetaData\PackageConstraint\$value
‪string $value
Definition: PackageConstraint.php:31
‪TYPO3\CMS\Core\Package\MetaData\PackageConstraint
Definition: PackageConstraint.php:22
‪TYPO3\CMS\Core\Package\MetaData
Definition: PackageConstraint.php:16
‪TYPO3\CMS\Core\Package\MetaData\PackageConstraint\$maxVersion
‪string null $maxVersion
Definition: PackageConstraint.php:41
‪TYPO3\CMS\Core\Package\MetaData\PackageConstraint\$constraintType
‪string $constraintType
Definition: PackageConstraint.php:26