We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c789d8 commit 787df5bCopy full SHA for 787df5b
src/Domain/Configuration/Model/I18n.php
@@ -8,6 +8,11 @@
8
use PhpList\Core\Domain\Common\Model\Interfaces\DomainModel;
9
use PhpList\Core\Domain\Configuration\Repository\I18nRepository;
10
11
+/**
12
+ * @deprecated
13
+ *
14
+ * Symfony\Contracts\Translation will be used instead.
15
+ */
16
#[ORM\Entity(repositoryClass: I18nRepository::class)]
17
#[ORM\Table(name: 'phplist_i18n')]
18
#[ORM\UniqueConstraint(name: 'lanorigunq', columns: ['lan', 'original'])]
src/Domain/Configuration/Repository/I18nRepository.php
@@ -6,6 +6,7 @@
6
7
use PhpList\Core\Domain\Common\Repository\AbstractRepository;
+/** @deprecated */
class I18nRepository extends AbstractRepository
{
}
0 commit comments