Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | public function getAll() |
||
42 | { |
||
43 | $collection = $this->institutionListingService->getAll(); |
||
44 | $listings = $collection->getElements(); |
||
45 | |||
46 | $options = []; |
||
47 | foreach ($listings as $listing) { |
||
48 | $options[$listing->institution] = $listing->institution; |
||
49 | } |
||
50 | |||
51 | return $options; |
||
52 | } |
||
53 | } |
||
54 |