Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
33 | protected function createAuthorizationServer() |
||
34 | { |
||
35 | $server = new AuthorizationServer( |
||
36 | ModelsHelper::clients(), |
||
37 | ModelsHelper::accessTokens(), |
||
38 | ModelsHelper::scopes(), |
||
39 | $this->getContainer()->get('hello.keys.private'), |
||
40 | $this->getContainer()->get('hello.keys.public') |
||
41 | ); |
||
42 | |||
43 | return $server; |
||
44 | } |
||
46 |