| 1 | <?php |
||
| 7 | class FeedRepository extends EntityRepository |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Returns the highest frequency value, meaning the actual value: the |
||
| 11 | * frequency is stored as number of hours, so a higher number actually means |
||
| 12 | * a smaller frequency. |
||
| 13 | * |
||
| 14 | * @return int |
||
| 15 | */ |
||
| 16 | public function findHighestFrequencyValue() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Returns a feed that matches the given origin and reader options |
||
| 28 | * |
||
| 29 | * @param int $originId |
||
| 30 | * @param array $readerOptions |
||
| 31 | * |
||
| 32 | * @return Feed|null |
||
| 33 | */ |
||
| 34 | public function findOneByOriginAndReaderOptions( |
||
| 50 | } |
||
| 51 |