mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-27 14:48:08 -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);
|
|
}
|