Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d731048

Browse filesBrowse files
committed
minor #51891 [Cache] synchronize the Relay fixture (xabbuh)
This PR was merged into the 6.3 branch. Discussion ---------- [Cache] synchronize the Relay fixture | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT Commits ------- 0634718 synchronize the Relay fixture
2 parents 7bac663 + 0634718 commit d731048
Copy full SHA for d731048

File tree

1 file changed

+5
-0
lines changed
Filter options

1 file changed

+5
-0
lines changed

‎src/Symfony/Component/Cache/Traits/RelayProxy.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Traits/RelayProxy.php
+5Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,11 @@ public function publish($channel, $message): \Relay\Relay|false|int
542542
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->publish(...\func_get_args());
543543
}
544544

545+
public function pubsub($operation, ...$args): mixed
546+
{
547+
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->pubsub(...\func_get_args());
548+
}
549+
545550
public function spublish($channel, $message): \Relay\Relay|false|int
546551
{
547552
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->spublish(...\func_get_args());

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.