Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | abstract class AbstractRelationalResource extends AbstractResource |
||
8 | { |
||
9 | /** |
||
10 | * Returns all upcoming tasks assigned to the authenticated user related to |
||
11 | * a person, company, case, or deal. |
||
12 | * |
||
13 | * @param string $name The name of the resource for which tasks should be |
||
14 | * returned. |
||
15 | * @param mixed $id The resource ID. |
||
16 | * @param array $filters The request filters. |
||
17 | * @return CollectionInterface |
||
18 | */ |
||
19 | 1 | public function findBy(string $name, $id, array $filters = []): CollectionInterface |
|
25 |