| 1 | <?php | ||
| 11 | class AuthenticationContextFactory | ||
| 12 | { | ||
| 13 | /** | ||
| 14 | * @var ParameterBag | ||
| 15 | */ | ||
| 16 | private $options; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * @var string | ||
| 20 | */ | ||
| 21 | private $attribute; | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @param array $options | ||
| 25 | * @param string $attribute | ||
| 26 | */ | ||
| 27 | public function __construct(array $options, $attribute) | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @return string | ||
| 35 | */ | ||
| 36 | public function getAttribute() | ||
| 40 | |||
| 41 | /** | ||
| 42 | * @return AuthenticationContext | ||
| 43 | */ | ||
| 44 | public function getContext() | ||
| 48 | } | ||
| 49 |