Skip to content

Commit 00af1e8

Browse files
committed
Revert "these shouldnt be final"
This reverts commit 928c51b.
1 parent 2ed6b60 commit 00af1e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/Doctrine/fixtures/source_project/src/Entity/BaseClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Doctrine\ORM\Mapping as ORM;
66

77
#[ORM\MappedSuperclass]
8-
class BaseClient
8+
final class BaseClient
99
{
1010
use TeamTrait;
1111

tests/Doctrine/fixtures/source_project/src/Entity/TeamTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Doctrine\ORM\Mapping as ORM;
66

7-
trait TeamTrait
7+
final trait TeamTrait
88
{
99
#[ORM\ManyToMany(targetEntity: User::class)]
1010
private $members;

tests/Doctrine/fixtures/source_project/src/Entity/TimestampableTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Doctrine\DBAL\Types\Types;
66
use Doctrine\ORM\Mapping as ORM;
77

8-
trait TimestampableTrait
8+
final trait TimestampableTrait
99
{
1010
#[ORM\Column(type: Types::DATETIME_MUTABLE)]
1111
private ?\DateTimeInterface $createdAt = null;

0 commit comments

Comments
 (0)