Skip to content

Commit c9798b6

Browse files
committed
docs: make PHPDoc type more specific
1 parent 69fc51f commit c9798b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system/View/Table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Table
2525
/**
2626
* Data for table rows
2727
*
28-
* @var array
28+
* @var list<array>|list<list<array>>
2929
*/
3030
public $rows = [];
3131

@@ -258,7 +258,7 @@ public function setSyncRowsWithHeading(bool $orderByKey)
258258
*
259259
* Ensures a standard associative array format for all cell data
260260
*
261-
* @return array
261+
* @return array<string, array>|list<array>
262262
*/
263263
protected function _prepArgs(array $args)
264264
{

0 commit comments

Comments
 (0)