From 33445bcbb93be89ba4679f36863f29154cb63975 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 1 Aug 2021 18:51:36 +0200 Subject: [PATCH] Tests/ArrayKeyTest: fix incorrect `@uses` tag This tag was flagged by PHPUnit: ``` 1) phpDocumentor\Reflection\Types\ArrayKeyTest::testArrayKeyCanBeIterated Trying to @cover or @use not existing method "::__construct". ``` Fixed now. --- tests/unit/Types/ArrayKeyTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Types/ArrayKeyTest.php b/tests/unit/Types/ArrayKeyTest.php index 86bbe70..5ee5a67 100644 --- a/tests/unit/Types/ArrayKeyTest.php +++ b/tests/unit/Types/ArrayKeyTest.php @@ -30,7 +30,7 @@ public function testArrayKeyCanBeConstructedAndStringifiedCorrectly() : void } /** - * @uses ::__construct + * @uses \phpDocumentor\Reflection\Types\ArrayKey::__construct * * @covers ::getIterator */