Beispiel #1
0
 /**
  * @return array|PostInterface[]
  */
 public function findAllPosts()
 {
     return $this->postMapper->findAll();
 }
Beispiel #2
0
 public function getAllPosts($limit = null)
 {
     return $this->postMapper->findAll(array(), $limit);
 }