1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 15:22:19 +01:00
Files
archived-web-php/Gateway/NewsGateway.php

21 lines
358 B
PHP

<?php
interface NewsGateway {
/**
* @abstract
* @param int $max [optional]
* @return array
*/
function getLatestArticles($max = 5);
/**
* @abstract
* @param array $categories
* @param int $limit [optional]
* @return array
*/
function getArticlesForCategories(array $categories, $limit = 5);
}