Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class Affiliations extends Model |
||
6 | { |
||
7 | /** |
||
8 | * Hold cherry picked list of affiliations. |
||
9 | * |
||
10 | * @var array |
||
11 | */ |
||
12 | protected $list = []; |
||
13 | |||
14 | /** |
||
15 | * Add unknown affiliations to the current list. |
||
16 | * |
||
17 | * @param $affiliations |
||
18 | * @return array |
||
19 | */ |
||
20 | public function add(array $affiliations): array |
||
31 |