diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f77dd0b..88992bb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,7 @@ version: 2 updates: -# Monitor Composer dependencies + # Monitor Composer dependencies - package-ecosystem: composer directory: / schedule: @@ -12,10 +12,9 @@ updates: - dependencies - composer commit-message: - prefix: deps - include: scope - -# Monitor GitHub Actions + prefix: fix(deps) + prefix-development: chore(deps-dev) + # Monitor GitHub Actions - package-ecosystem: github-actions directory: / schedule: @@ -24,5 +23,4 @@ updates: - dependencies - github-actions commit-message: - prefix: deps - include: scope + prefix: chore(ci) diff --git a/src/Rules/ExceptionHandling/CatchThrowableNotExceptionRule.php b/src/Rules/ExceptionHandling/CatchThrowableNotExceptionRule.php index 9e37254..89a2f6c 100644 --- a/src/Rules/ExceptionHandling/CatchThrowableNotExceptionRule.php +++ b/src/Rules/ExceptionHandling/CatchThrowableNotExceptionRule.php @@ -12,6 +12,8 @@ * @license https://github.com/openCoreEMR/openemr-phpstan-rules/blob/main/LICENSE GNU General Public License 3 */ +declare(strict_types=1); + namespace OpenCoreEMR\PHPStan\Rules\ExceptionHandling; use PhpParser\Node; diff --git a/src/Rules/Testing/NoCoversAnnotationOnClassRule.php b/src/Rules/Testing/NoCoversAnnotationOnClassRule.php index 5e7e99e..9e47175 100644 --- a/src/Rules/Testing/NoCoversAnnotationOnClassRule.php +++ b/src/Rules/Testing/NoCoversAnnotationOnClassRule.php @@ -12,6 +12,8 @@ * @license https://github.com/openCoreEMR/openemr-phpstan-rules/blob/main/LICENSE GNU General Public License 3 */ +declare(strict_types=1); + namespace OpenCoreEMR\PHPStan\Rules\Testing; use PhpParser\Node;