Change array type hint

This commit is contained in:
jshayes
2024-10-13 09:54:19 -04:00
parent cd2eb3504b
commit 9510d4a2f9
5 changed files with 7 additions and 7 deletions

View File

@ -12,14 +12,14 @@ trait Describable
/**
* Note: this is property is not used; however, it gets added automatically by rector php.
*
* @var string[]
* @var array<int, string>
*/
public array $__describing;
/**
* The describing of the test case.
*
* @var string[]
* @var array<int, string>
*/
public array $describing = [];
}