summaryrefslogtreecommitdiffstats
path: root/feed.bl.php
blob: 71507af98152c7a1bd32a3bfd3d1b087cbf33075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace OCA\News;

class FeedBL {

	public function __construct($feedMapper){
		$this->feedMapper = $feedMapper;
	}
	
	public function getAll() {
		return $this->feedMapper->findAll();	
	}
}