Skip to content

Commit

Permalink
fix: Cast str to int to satisfy typing on cpms client (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
fibble authored Aug 28, 2024
1 parent c512bf9 commit 1116488
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/selfserve/config/autoload/config-parameter.global.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

use Dvsa\LaminasConfigCloudParameters\Cast\Boolean;
use Dvsa\LaminasConfigCloudParameters\Cast\Integer;
use Dvsa\LaminasConfigCloudParameters\ParameterProvider\Aws\SecretsManager;
use Dvsa\LaminasConfigCloudParameters\ParameterProvider\Aws\ParameterStore;

Expand Down Expand Up @@ -40,5 +41,7 @@
],
'casts' => [
'[query_cache][enabled]' => Boolean::class,
'[log][Logger][writers][full][options][filters][priority][options][priority]' => Integer::class,
'[log][ExceptionLogger][writers][full][options][filters][priority][options][priority]' => Integer::class,
],
];

0 comments on commit 1116488

Please sign in to comment.