Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Channel/Internal/UnboundedSender.php
Назад
<?php declare(strict_types=1); namespace Psl\Channel\Internal; use Psl\Channel\SenderInterface; /** * @template T * * @implements SenderInterface<T> */ final class UnboundedSender implements SenderInterface { /** * @use ChannelSideTrait<UnboundedChannelState<T>> */ use ChannelSideTrait; /** * @param UnboundedChannelState<T> $state */ public function __construct(UnboundedChannelState $state) { $this->state = $state; } /** * {@inheritDoc} */ public function send(mixed $message): void { /** @psalm-suppress MissingThrowsDocblock */ $this->state->send($message); } /** * {@inheritDoc} */ public function trySend(mixed $message): void { $this->state->send($message); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка