| 1 | <?php |
||
| 7 | class RelyingPartyCollection implements RelyingPartyInterface |
||
| 8 | { |
||
| 9 | /** @var RelyingPartyInterface[] */ |
||
| 10 | protected $relyingParties = array(); |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param RelyingPartyInterface $relyingParty |
||
| 14 | */ |
||
| 15 | 7 | public function append(RelyingPartyInterface $relyingParty) |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @param RelyingPartyInterface $relyingParty |
||
| 22 | */ |
||
| 23 | 2 | public function prepend(RelyingPartyInterface $relyingParty) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | 6 | public function supports(Request $request) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | 4 | public function manage(Request $request) |
|
| 46 | |||
| 47 | /** |
||
| 48 | * @param \Symfony\Component\HttpFoundation\Request $request |
||
| 49 | * @return RelyingPartyInterface|null |
||
| 50 | */ |
||
| 51 | 8 | protected function findRelyingPartySupportedRequest(Request $request) |
|
| 60 | } |
||
| 61 |