Created
July 6, 2024 06:17
-
-
Save staabm/2e4c7d245725ee932fcb9df8234b98e0 to your computer and use it in GitHub Desktop.
PHPStan bug 11283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
/** | |
* Partial copy of https://github.com/reactphp/promise/blob/3.x/src/PromiseInterface.php | |
* @template-covariant T | |
*/ | |
interface PromiseInterface | |
{ | |
/** | |
* @template TFulfilled | |
* @template TRejected | |
* @param ?(callable((T is void ? null : T)): (PromiseInterface<TFulfilled>|TFulfilled)) $onFulfilled | |
* @param ?(callable(\Throwable): (PromiseInterface<TRejected>|TRejected)) $onRejected | |
* @return PromiseInterface<($onRejected is null ? ($onFulfilled is null ? T : TFulfilled) : ($onFulfilled is null ? T|TRejected : TFulfilled|TRejected))> | |
*/ | |
public function then(?callable $onFulfilled = null, ?callable $onRejected = null): PromiseInterface; | |
/** | |
* @template TThrowable of \Throwable | |
* @template TRejected | |
* @param callable(TThrowable): (PromiseInterface<TRejected>|TRejected) $onRejected | |
* @return PromiseInterface<T|TRejected> | |
*/ | |
public function catch(callable $onRejected): PromiseInterface; | |
/** | |
* @param callable(): (void|PromiseInterface<void>) $onFulfilledOrRejected | |
* @return PromiseInterface<T> | |
*/ | |
public function finally(callable $onFulfilledOrRejected): PromiseInterface; | |
} | |
/** | |
* @template T | |
* @param PromiseInterface<T>|T $promiseOrValue | |
* @return PromiseInterface<T> | |
*/ | |
function resolve($promiseOrValue): PromiseInterface | |
{ | |
$ret = null; | |
/** @var PromiseInterface<T> $ret */ | |
return $ret; | |
} | |
class Demonstration | |
{ | |
public function parseMessage(): void | |
{ | |
$params = []; | |
$packet = []; | |
$promise = resolve(null); | |
$promise->then(function () use (&$packet, &$params) { | |
if (mt_rand(0, 1)) { | |
resolve(null)->then( | |
function () use ($packet, &$params) { | |
$packet['payload']['type'] = 0; | |
$this->groupNotify( | |
$packet, | |
function () use ($packet, &$params) { | |
$this->save($packet, $params)->then(function () use ($packet, &$params) { | |
if ($params['links']) { | |
$this->handle($params)->then(function ($result) use ($packet) { | |
if ($result) { | |
$packet['payload']['preview'] = $result; | |
} | |
}); | |
} | |
}); | |
} | |
); | |
} | |
); | |
} | |
}); | |
} | |
/** | |
* @return PromiseInterface<mixed> | |
*/ | |
private function handle(mixed $params): PromiseInterface | |
{ | |
return resolve(null); | |
} | |
/** | |
* @param array<string, mixed> $packet | |
* @param array<string, mixed> $params | |
* @return PromiseInterface<int> | |
*/ | |
private function save(array $packet, array &$params): PromiseInterface | |
{ | |
return resolve(0); | |
} | |
/** | |
* @param array<string, mixed> $packet | |
* @param (callable():void) $callback | |
* @return bool | |
*/ | |
private function groupNotify(array $packet, callable $callback): bool | |
{ | |
return true; | |
} | |
/** | |
* @param array<string, mixed> $packet | |
* @return bool | |
*/ | |
private function selfNotify(array $packet): bool | |
{ | |
return true; | |
} | |
/** | |
* @return PromiseInterface<mixed> | |
*/ | |
private function asyncAction(): PromiseInterface | |
{ | |
return resolve(''); | |
} | |
/** | |
* @param callable():void $callback | |
*/ | |
private function call(callable $callback): void | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment