Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/add-MagicActiveRecord' into add-…
Browse files Browse the repository at this point in the history
…MagicActiveRecord
  • Loading branch information
Tigrov committed May 22, 2024
2 parents 7667adf + 53a620e commit 4ffe5f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/Stubs/ActiveRecord/ArrayAndJsonTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
final class ArrayAndJsonTypes extends ActiveRecord
{
public int $id;
public array|ArrayExpression|null $intarray_col;
public array|ArrayExpression|null $textarray2_col;
public array|float|int|string|JsonExpression|null $json_col;
public array|float|int|string|JsonExpression|null $jsonb_col;
public array|ArrayExpression|Expression|null $jsonarray_col;
public array|ArrayExpression|null $intarray_col = null;
public array|ArrayExpression|null $textarray2_col = null;
public array|float|int|string|JsonExpression|null $json_col = null;
public array|float|int|string|JsonExpression|null $jsonb_col = null;
public array|ArrayExpression|Expression|null $jsonarray_col = null;
}

0 comments on commit 4ffe5f3

Please sign in to comment.