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 8c20465Copy full SHA for 8c20465
src/Domain/Configuration/Model/I18n.php
@@ -7,7 +7,11 @@
7
use Doctrine\ORM\Mapping as ORM;
8
use PhpList\Core\Domain\Common\Model\Interfaces\DomainModel;
9
use PhpList\Core\Domain\Configuration\Repository\I18nRepository;
10
-
+/**
11
+ * @deprecated
12
+ *
13
+ * Symfony\Contracts\Translation will be used instead.
14
+ */
15
#[ORM\Entity(repositoryClass: I18nRepository::class)]
16
#[ORM\Table(name: 'phplist_i18n')]
17
#[ORM\UniqueConstraint(name: 'lanorigunq', columns: ['lan', 'original'])]
src/Domain/Configuration/Repository/I18nRepository.php
@@ -6,6 +6,7 @@
6
use PhpList\Core\Domain\Common\Repository\AbstractRepository;
+/** @deprecated */
class I18nRepository extends AbstractRepository
{
}
0 commit comments