1 | <?php |
||
25 | class SamlToken extends AbstractToken |
||
26 | { |
||
27 | /** |
||
28 | * @var \SAML2_Assertion |
||
29 | */ |
||
30 | public $assertion; |
||
31 | |||
32 | /** |
||
33 | * @var \Surfnet\StepupBundle\Value\Loa |
||
34 | */ |
||
35 | private $loa; |
||
36 | |||
37 | /** |
||
38 | * @var InstitutionConfigurationOptions |
||
39 | */ |
||
40 | private $institutionConfigurationOptions; |
||
41 | |||
42 | public function __construct( |
||
53 | |||
54 | /** |
||
55 | * @return InstitutionConfigurationOptions |
||
56 | */ |
||
57 | public function getInstitutionConfigurationOptions() |
||
61 | |||
62 | /** |
||
63 | * Returns the user credentials. |
||
64 | * |
||
65 | * @return mixed The user credentials |
||
66 | */ |
||
67 | public function getCredentials() |
||
71 | |||
72 | /** |
||
73 | * @return Loa |
||
74 | */ |
||
75 | public function getLoa() |
||
79 | |||
80 | public function serialize() |
||
84 | |||
85 | public function unserialize($serialized) |
||
91 | } |
||
92 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.