| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Oauth2CertificatesController extends Oauth2BaseApiController implements Oauth2CertificatesControllerInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @inheritDoc |
||
| 15 | */ |
||
| 16 | 5 | public function behaviors() |
|
| 17 | { |
||
| 18 | 5 | return ArrayHelper::merge(parent::behaviors(), [ |
|
| 19 | 5 | 'verbFilter' => [ |
|
| 20 | 5 | 'class' => VerbFilter::class, |
|
| 21 | 5 | 'actions' => [ |
|
| 22 | 5 | static::ACTION_NAME_JWKS => ['GET'], |
|
| 23 | 5 | ], |
|
| 24 | 5 | ], |
|
| 25 | 5 | ]); |
|
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritDoc |
||
| 30 | */ |
||
| 31 | 5 | public function actions() |
|
| 35 | 5 | ]; |
|
| 36 | } |
||
| 38 |