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.218.99.99
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; /** * @template T * @template E */ abstract class Result { /** * Get the success option value. * * @return \PhpOption\Option<T> */ abstract public function success(); /** * Get the success value, if possible. * * @throws \RuntimeException * * @return T */ public function getSuccess() { return $this->success()->get(); } /** * Map over the success value. * * @template S * * @param callable(T):S $f * * @return \Dotenv\Result\Result<S,E> */ abstract public function mapSuccess(callable $f); /** * Get the error option value. * * @return \PhpOption\Option<E> */ abstract public function error(); /** * Get the error value, if possible. * * @throws \RuntimeException * * @return E */ public function getError() { return $this->error()->get(); } /** * Map over the error value. * * @template F * * @param callable(E):F $f * * @return \Dotenv\Result\Result<T,F> */ abstract public function mapError(callable $f); }