We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04be2b7 commit 616e984Copy full SHA for 616e984
Classes/Eel/ValueObjectHelper.php
@@ -52,6 +52,15 @@ public function combineCollection(ImageSourceProxyCollection|ImageSourceProxy|nu
52
return new ImageSourceProxyCollection(...$proxies);
53
}
54
55
+ /**
56
+ * @param ImageSourceProxyCollection|ImageSourceProxy|null ...$items
57
+ * @return @return ImageSourceInterface[]
58
+ */
59
+ public function combineAndUnwrapCollection(ImageSourceProxyCollection|ImageSourceProxy|null ...$items): array
60
+ {
61
+ return $this->unwrapProxyCollection( $this->combineCollection(...$items));
62
+ }
63
+
64
public function allowsCallOfMethod($methodName)
65
{
66
return true;
0 commit comments