From 822a5c589c9880efa5244e230c5cf12bb6d6e752 Mon Sep 17 00:00:00 2001 From: Geoff Appleby Date: Fri, 24 Feb 2023 22:59:43 -0800 Subject: [PATCH] Fix type definition of test Rule expected value --- tests/Rule.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/Rule.php b/tests/Rule.php index e680b2c..6fa863b 100644 --- a/tests/Rule.php +++ b/tests/Rule.php @@ -2,7 +2,9 @@ namespace gapple\Tests\StructuredFields; -// phpcs:disable Generic.Files.LineLength.TooLong +use gapple\StructuredFields\Dictionary; +use gapple\StructuredFields\Item; +use gapple\StructuredFields\OuterList; class Rule { @@ -25,7 +27,7 @@ class Rule public $raw; /** - * @var null|array{mixed, array}|array}>|array}}> + * @var null|Item|Dictionary|OuterList * @readonly */ public $expected;