| 1 | <?php |
||
| 10 | abstract class AbstractBaseAuthStrategy implements AuthStrategyInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * $options. |
||
| 14 | * |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | protected $options; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Constructor. |
||
| 21 | * |
||
| 22 | * @param array $options |
||
| 23 | */ |
||
| 24 | public function __construct(array $options = array()) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * configureOptions. |
||
| 34 | * |
||
| 35 | * @param OptionsResolver $resolver |
||
| 36 | */ |
||
| 37 | public function configureOptions(OptionsResolver $resolver) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | abstract public function getRequestOptions(); |
||
| 51 | } |
||
| 52 |