| 1 | <?php |
||
| 9 | class DecodeBase64Transformer implements |
||
| 10 | Transformer, |
||
| 11 | IdentityProviderAware |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var \SAML2\Configuration\IdentityProvider |
||
| 15 | */ |
||
| 16 | private $identityProvider; |
||
| 17 | |||
| 18 | public function setIdentityProvider(IdentityProvider $identityProvider) |
||
| 22 | |||
| 23 | public function transform(Assertion $assertion) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param $value |
||
| 40 | * |
||
| 41 | * @return array |
||
| 42 | * @SuppressWarnings(PHPMD.UnusedPrivateMethod) |
||
| 43 | */ |
||
| 44 | private function decodeValue($value) |
||
| 49 | } |
||
| 50 |