Skip to content

Commit

Permalink
8.4 Nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
asika32764 committed Feb 13, 2025
1 parent c6fe717 commit a671742
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Grid/KeyValueGrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ public function addItem(string $key, $value = null, array $attrs = []): static
/**
* addItems
*
* @param array $items
* @param array $attrs
* @param array|null $items
* @param array $attrs
*
* @return static
*/
public function addItems(array $items = null, array $attrs = []): static
public function addItems(?array $items = null, array $attrs = []): static
{
$this->configure(
$items,
Expand Down

0 comments on commit a671742

Please sign in to comment.