Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function __construct() |
||
27 | { |
||
28 | $this->addSubSource(new AuthorizationCodeSource()); |
||
29 | $this->addSubSource(new ClientCredentialsSource()); |
||
30 | $this->addSubSource(new ImplicitSource()); |
||
31 | $this->addSubSource(new NoneSource()); |
||
32 | $this->addSubSource(new ResourceOwnerPasswordCredentialSource()); |
||
33 | $this->addSubSource(new JwtBearerSource()); |
||
34 | $this->addSubSource(new RefreshTokenSource()); |
||
35 | } |
||
36 | |||
54 |