📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-04 05:19:08
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
guzzlehttp
/
promises
/
tests
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/guzzlehttp/promises/tests
🔄 Refresh
✏️
Editing: Thennable.php
Writable
<?php declare(strict_types=1); namespace GuzzleHttp\Promise\Tests; use GuzzleHttp\Promise\Promise; class Thennable { private $nextPromise; public function __construct() { $this->nextPromise = new Promise(); } public function then(?callable $res = null, ?callable $rej = null) { return $this->nextPromise->then($res, $rej); } public function resolve($value): void { $this->nextPromise->resolve($value); } }
💾 Save Changes
❌ Cancel