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 : 18.188.161.182
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
vlucas /
phpdotenv /
src /
Result /
Delete
Unzip
Name
Size
Permission
Date
Action
Error.php
1.52
KB
-rw-r--r--
2020-11-17 16:24
Result.php
1.18
KB
-rw-r--r--
2020-11-17 16:24
Success.php
1.52
KB
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php namespace Dotenv\Result; use PhpOption\None; use PhpOption\Some; /** * @template T * @template E * @extends \Dotenv\Result\Result<T,E> */ class Error extends Result { /** * @var E */ private $value; /** * Internal constructor for an error value. * * @param E $value * * @return void */ private function __construct($value) { $this->value = $value; } /** * Create a new error value. * * @template F * * @param F $value * * @return \Dotenv\Result\Result<T,F> */ public static function create($value) { return new self($value); } /** * Get the success option value. * * @return \PhpOption\Option<T> */ public function success() { return None::create(); } /** * Map over the success value. * * @template S * * @param callable(T):S $f * * @return \Dotenv\Result\Result<S,E> */ public function mapSuccess(callable $f) { return self::create($this->value); } /** * Get the error option value. * * @return \PhpOption\Option<E> */ public function error() { return Some::create($this->value); } /** * Map over the error value. * * @template F * * @param callable(E):F $f * * @return \Dotenv\Result\Result<T,F> */ public function mapError(callable $f) { return self::create($f($this->value)); } }