Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class Authorizer implements GrantAccessInterface |
||
20 | { |
||
21 | private $builder; |
||
22 | |||
23 | private $baseUri; |
||
24 | |||
25 | /** |
||
26 | * Authorizer constructor. |
||
27 | * @param AuthBuilderInterface $builder |
||
28 | * @param string $baseUri |
||
29 | */ |
||
30 | public function __construct( |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @inheritDoc |
||
40 | * This is a full business constraint |
||
41 | */ |
||
42 | public function getAuthUrl(array $params): string |
||
49 |