mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-12 19:16:45 +00:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user