Complete docblock

This commit is contained in:
Aidan Woods 2021-10-13 19:35:21 +01:00
parent e9dec33dc6
commit 05a47e7083
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9

View File

@ -26,6 +26,9 @@ interface TransformableRenderable extends Renderable
/**
* Similar to transformingContent, but replace the string $search in text content
* with the renderable $Replacement and return the result.
*
* @param string $search
* @return Renderable
*/
public function replacingAll(string $search, Renderable $Replacement): Renderable;
}