From 0904ea0f9c30c8025d92075705e63a5f825ee07f Mon Sep 17 00:00:00 2001 From: Paul Johnston Date: Wed, 28 Aug 2024 09:47:56 +1000 Subject: [PATCH] fix new code style errors --- src/Processors/AugmentTags.php | 2 +- tests/Processors/AugmentTagsTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Processors/AugmentTags.php b/src/Processors/AugmentTags.php index d888f94e..a19633e4 100644 --- a/src/Processors/AugmentTags.php +++ b/src/Processors/AugmentTags.php @@ -16,7 +16,7 @@ class AugmentTags implements ProcessorInterface { - /** @var array */ + /** @var array */ protected $unusedTagsToKeepWhitelist = []; public function __construct(array $unusedTagsToKeepWhitelist = []) diff --git a/tests/Processors/AugmentTagsTest.php b/tests/Processors/AugmentTagsTest.php index 2a8c178c..b68ce587 100644 --- a/tests/Processors/AugmentTagsTest.php +++ b/tests/Processors/AugmentTagsTest.php @@ -50,7 +50,7 @@ public function testAllowUnusedTags(): void static::processors(), null, [ - 'augmentTags' => ['unusedTagsToKeepWhitelist' => ['fancy']] + 'augmentTags' => ['unusedTagsToKeepWhitelist' => ['fancy']], ] );