Files
FreshRSS/app/Models/Searchable.php
Alexandre Alapetite 1d9d4e3e3c Update dev dependencies (#4993)
Related to https://github.com/FreshRSS/FreshRSS/pull/4991
Required a few changes in code to pass the tests
2023-01-09 12:59:30 +01:00

11 lines
135 B
PHP

<?php
interface FreshRSS_Searchable {
/**
* @param int|string $id
* @return Minz_Model
*/
public function searchById($id);
}