mirror of
https://github.com/php/web-php.git
synced 2026-03-24 15:22:19 +01:00
21 lines
358 B
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);
|
|
|
|
}
|