| 1 | <?php |
||
| 21 | class InstitutionMatchingHelper |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Finds the intersection of two institution lists. Matching is performed in a case insensitive manner. |
||
| 25 | * |
||
| 26 | * Returns the match found in the $institutionList1. |
||
| 27 | * |
||
| 28 | * @param array $institutionList1 |
||
| 29 | * @param array $institutionList2 |
||
| 30 | * @return array |
||
| 31 | */ |
||
| 32 | public function findMatches(array $institutionList1, array $institutionList2) |
||
| 37 | } |
||
| 38 |