setPublication() public method

public setPublication ( SimpleBlogWrote $blogWrote )
$blogWrote SimpleBlogWrote
 public function createPost($title)
 {
     $post = new SimpleBlogPost($title);
     $wroteRel = new SimpleBlogWrote($this, $post);
     $this->posts->add($wroteRel);
     $post->setPublication($wroteRel);
 }