Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Composer /
Semver /
Constraint /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractConstraint.php
1.58
KB
-rw-r--r--
2016-08-30 18:08
Constraint.php
5.83
KB
-rw-r--r--
2016-08-30 18:08
ConstraintInterface.php
606
B
-rw-r--r--
2016-08-30 18:08
EmptyConstraint.php
1.05
KB
-rw-r--r--
2016-08-30 18:08
MultiConstraint.php
2.54
KB
-rw-r--r--
2016-08-30 18:08
Save
Rename
<?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; /** * Defines the absence of a constraint. */ class EmptyConstraint implements ConstraintInterface { /** @var string */ protected $prettyString; /** * @param ConstraintInterface $provider * * @return bool */ public function matches(ConstraintInterface $provider) { return true; } /** * @param $prettyString */ public function setPrettyString($prettyString) { $this->prettyString = $prettyString; } /** * @return string */ public function getPrettyString() { if ($this->prettyString) { return $this->prettyString; } return $this->__toString(); } /** * @return string */ public function __toString() { return '[]'; } }