diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2023-07-12 21:56:09 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2023-07-12 21:56:09 +0200 |
commit | 3f9d5e11d1b2c47a69a929bb63479c49f6a52d7a (patch) | |
tree | 05120058197d9bf0fdf975c13171925cf4bb4755 /tests/unit | |
parent | 09fe271b25895c38f823fb4820cdfa9836ee9a8b (diff) | |
download | volse-hubzilla-3f9d5e11d1b2c47a69a929bb63479c49f6a52d7a.tar.gz volse-hubzilla-3f9d5e11d1b2c47a69a929bb63479c49f6a52d7a.tar.bz2 volse-hubzilla-3f9d5e11d1b2c47a69a929bb63479c49f6a52d7a.zip |
tests: AccessListTest move type annotation to code
This cleans up the doc comment. Should probably try to do this
everywhere.
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/Access/AccessListTest.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/Access/AccessListTest.php b/tests/unit/Access/AccessListTest.php index 0952949f5..1b18a8340 100644 --- a/tests/unit/Access/AccessListTest.php +++ b/tests/unit/Access/AccessListTest.php @@ -34,10 +34,9 @@ use Zotlabs\Access\AccessList; class AccessListTest extends UnitTestCase { /** - * @brief Expected result for most tests. - * @var array + * Expected result for most tests. */ - protected $expectedResult = [ + protected array $expectedResult = [ 'allow_cid' => '<acid><acid2>', 'allow_gid' => '<agid>', 'deny_cid' => '', |