Change visibility of setPosts,getPosts in blocks renderer.

[MAILPOET-2961]
This commit is contained in:
Rostislav Wolny
2020-06-03 16:30:23 +02:00
committed by Veljko V
parent a1efca7537
commit 36e3d2cae4

View File

@ -156,11 +156,11 @@ class Renderer {
return $this->renderBlocksInColumn($newsletter, $transformedPosts, $columnBaseWidth);
}
public function getPosts() {
private function getPosts() {
return $this->posts;
}
public function setPosts($posts) {
private function setPosts($posts) {
return $this->posts = $posts;
}
}