7 lines
91 B
PHP
7 lines
91 B
PHP
<?php
|
|
namespace App\Services\Feeds;
|
|
|
|
interface Feed
|
|
{
|
|
public function get() : array ;
|
|
} |