Fix DocBlock in Style (#3200)

There is a DocBlock `@var ?array<string, array>` which causes PhpDocumentor to fail parsing Style/Style, so the online API documentation for that class is missing. Changing to `@var null|array<string, array>` fixes the problem.
This commit is contained in:
oleibman
2022-11-21 21:28:57 -08:00
committed by GitHub
parent 704a7b9fd1
commit 525384e573
+1 -1
View File
@@ -78,7 +78,7 @@ class Style extends Supervisor
* @see Style::applyFromArray()
* @see Style::getHashCode()
*
* @var ?array<string, array>
* @var null|array<string, array>
*/
private static $cachedStyles;