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