Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienHarper committed Sep 1, 2024
1 parent 569ee42 commit 9d6a0c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Comment
#[ORM\Column(type: Types::STRING, length: 255)]
protected ?string $author = null;

#[ORM\Column(type: Types::DATETIME_MUTABLE)]
#[ORM\Column(type: Types::DATETIME_IMMUTABLE)]
#[Gedmo\Timestampable(on: 'create')]
protected ?\DateTimeImmutable $created_at = null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ class Post implements \Stringable
#[ORM\Column(type: Types::TEXT)]
protected ?string $body = null;

#[ORM\Column(type: Types::DATETIME_MUTABLE)]
#[ORM\Column(type: Types::DATETIME_IMMUTABLE)]
#[Gedmo\Timestampable(on: 'create')]
protected ?\DateTimeImmutable $created_at = null;

#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, nullable: true)]
protected ?\DateTimeImmutable $deleted_at = null;

#[ORM\Column(type: Types::INTEGER, options: ['unsigned' => true], nullable: true)]
Expand Down

0 comments on commit 9d6a0c0

Please sign in to comment.