Example #1
0
 public function findLikesByEntityList($entityList)
 {
     $list = $this->likeDao->findByEntityList($entityList);
     $out = array();
     foreach ($list as $likeDto) {
         $out[$likeDto->entityType][$likeDto->entityId][] = $likeDto;
     }
     return $out;
 }