init of Murph
This commit is contained in:
commit
b92ad093f6
221 changed files with 17653 additions and 0 deletions
15
core/Repository/Site/NavigationRepository.php
Normal file
15
core/Repository/Site/NavigationRepository.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Core\Repository\Site;
|
||||
|
||||
use App\Core\Entity\Site\Navigation;
|
||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||||
use Doctrine\Persistence\ManagerRegistry;
|
||||
|
||||
class NavigationRepository extends ServiceEntityRepository
|
||||
{
|
||||
public function __construct(ManagerRegistry $registry)
|
||||
{
|
||||
parent::__construct($registry, Navigation::class);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue