mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-08 04:21:07 -05:00
Related to https://github.com/FreshRSS/FreshRSS/pull/4991 Required a few changes in code to pass the tests
11 lines
135 B
PHP
11 lines
135 B
PHP
<?php
|
|
|
|
interface FreshRSS_Searchable {
|
|
|
|
/**
|
|
* @param int|string $id
|
|
* @return Minz_Model
|
|
*/
|
|
public function searchById($id);
|
|
}
|