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.219.197.162
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-test /
vendor /
react /
promise /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxr-xr-x
2018-06-13 15:59
CancellablePromiseInterface.php
166
B
-rw-r--r--
2018-06-13 15:59
CancellationQueue.php
1.08
KB
-rw-r--r--
2018-06-13 15:59
Deferred.php
1.43
KB
-rw-r--r--
2018-06-13 15:59
ExtendedPromiseInterface.php
766
B
-rw-r--r--
2018-06-13 15:59
FulfilledPromise.php
1.74
KB
-rw-r--r--
2018-06-13 15:59
LazyPromise.php
1.62
KB
-rw-r--r--
2018-06-13 15:59
Promise.php
8.63
KB
-rw-r--r--
2018-06-13 15:59
PromiseInterface.php
320
B
-rw-r--r--
2018-06-13 15:59
PromisorInterface.php
144
B
-rw-r--r--
2018-06-13 15:59
RejectedPromise.php
2.06
KB
-rw-r--r--
2018-06-13 15:59
UnhandledRejectionException.php
611
B
-rw-r--r--
2018-06-13 15:59
functions.php
8
KB
-rw-r--r--
2018-06-13 15:59
functions_include.php
96
B
-rw-r--r--
2018-06-13 15:59
Save
Rename
<?php namespace React\Promise; class LazyPromise implements ExtendedPromiseInterface, CancellablePromiseInterface { private $factory; private $promise; public function __construct(callable $factory) { $this->factory = $factory; } public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) { return $this->promise()->then($onFulfilled, $onRejected, $onProgress); } public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) { return $this->promise()->done($onFulfilled, $onRejected, $onProgress); } public function otherwise(callable $onRejected) { return $this->promise()->otherwise($onRejected); } public function always(callable $onFulfilledOrRejected) { return $this->promise()->always($onFulfilledOrRejected); } public function progress(callable $onProgress) { return $this->promise()->progress($onProgress); } public function cancel() { return $this->promise()->cancel(); } /** * @internal * @see Promise::settle() */ public function promise() { if (null === $this->promise) { try { $this->promise = resolve(call_user_func($this->factory)); } catch (\Throwable $exception) { $this->promise = new RejectedPromise($exception); } catch (\Exception $exception) { $this->promise = new RejectedPromise($exception); } } return $this->promise; } }