18 lines
305 B
PHP
18 lines
305 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services\Data\Contracts;
|
||
|
|
||
|
use Illuminate\Support\Collection;
|
||
|
|
||
|
interface NewsProviderInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return Collection
|
||
|
*/
|
||
|
public function getArticles(int $limit = 10);
|
||
|
/**
|
||
|
* @return Collection
|
||
|
*/
|
||
|
public function getSingleArticle(string $slug);
|
||
|
}
|