diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 3d71015..5f8616a 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -48,7 +48,7 @@ jobs: - name: Coverage monitor if: env.EXECUTE_COVERAGE == 'true' - uses: slavcodev/coverage-monitor-action@1.1.0 + uses: slavcodev/coverage-monitor-action@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} clover_file: ${{ env.CLOVER_PATH }} diff --git a/CHANGELOG.md b/CHANGELOG.md index f55ba0e..52be153 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,12 @@ Fixed - for any bug fixes. Security - in case of vulnerabilities. --> +## 1.1.3 (2023-07-11) + +### Fixed + +- Fixed PHPDoc return type of `AdministrativeAreaRepository::findByCountry` method + ## 1.1.2 (2023-03-07) ### Added diff --git a/src/AdministrativeAreaRepository.php b/src/AdministrativeAreaRepository.php index 712c64d..b4ee20e 100644 --- a/src/AdministrativeAreaRepository.php +++ b/src/AdministrativeAreaRepository.php @@ -181,7 +181,7 @@ public function hasWithNameAndCountry(string $name, Country $country): bool /** * Retrieve a list of areas for a country code. * - * @return Country[] + * @return AdministrativeArea[] */ public function findByCountry(Country $country): array {