Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm committed Nov 7, 2024
1 parent 49c78bf commit 2d3fabc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/DbSchema/LazySchemaHasher.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class LazySchemaHasher implements SchemaHasher
*/
private $schemaHasherFactory;

private ?SchemaHasher $schemaHasher;
private ?SchemaHasher $schemaHasher = null;

/**
* @param callable():SchemaHasher $schemaHasherFactory
Expand Down
4 changes: 2 additions & 2 deletions src/QueryReflection/LazyQueryReflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ final class LazyQueryReflector implements QueryReflector, RecordingReflector
*/
private $reflectorFactory;

private ?QueryReflector $reflector;
private ?QueryReflector $reflector = null;

private ?DbaApi $dbaApi;
private ?DbaApi $dbaApi = null;

/**
* @param callable():QueryReflector $reflectorFactory
Expand Down

0 comments on commit 2d3fabc

Please sign in to comment.