Skip to content

Commit

Permalink
Fix more type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm committed Nov 7, 2024
1 parent 4a7d5f3 commit d38016c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DoctrineReflection/DoctrineResultObjectType.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

final class DoctrineResultObjectType extends ObjectType
{
private ?Type $rowType;
private ?Type $rowType = null;

public static function newWithRowType(Type $rowType): self
{
Expand Down
2 changes: 1 addition & 1 deletion src/MysqliReflection/MysqliResultObjectType.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

final class MysqliResultObjectType extends ObjectType
{
private ?Type $rowType;
private ?Type $rowType = null;

public function setRowType(Type $rowType): void
{
Expand Down

0 comments on commit d38016c

Please sign in to comment.