Skip to content

Commit

Permalink
fixed doctype types
Browse files Browse the repository at this point in the history
  • Loading branch information
tjodalv committed Oct 17, 2024
1 parent 3bfcfb4 commit fcdb2df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
trait HasContainerGridLayout
{
/**
* @var array<string, int | string | null> | null
* @var array<string, int | string | null> | int | string | Closure | null
*/
protected array | int | string | Closure | null $gridColumns = null;

/**
* @param array<string, int | string | null> | int | string | null $columns
* @param array<string, int | string | null> | int | string | Closure | null $columns
*/
public function grid(array | int | string | Closure | null $columns = 2): static
{
Expand Down

0 comments on commit fcdb2df

Please sign in to comment.