Skip to content

Commit

Permalink
Added default value to Record::
Browse files Browse the repository at this point in the history
  • Loading branch information
juniwalk committed Oct 12, 2022
1 parent 4ff9cd7 commit c04cc69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/Record.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ abstract class Record
protected ?string $note;

#[ORM\Column(type: 'string', length: 8, nullable: true)]
protected ?string $hash;
protected ?string $hash = null;


final public function __construct(string $event, string $message)
Expand Down

0 comments on commit c04cc69

Please sign in to comment.