add node view entity
This commit is contained in:
parent
1f6aaf41e1
commit
1cb57a138f
4 changed files with 171 additions and 0 deletions
21
core/Repository/NodeViewRepository.php
Normal file
21
core/Repository/NodeViewRepository.php
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace App\Core\Repository;
|
||||
|
||||
use App\Core\Entity\NodeView;
|
||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||||
use Doctrine\Persistence\ManagerRegistry;
|
||||
|
||||
/**
|
||||
* @method NodeView|null find($id, $lockMode = null, $lockVersion = null)
|
||||
* @method NodeView|null findOneBy(array $criteria, array $orderBy = null)
|
||||
* @method NodeView[] findAll()
|
||||
* @method NodeView[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
||||
*/
|
||||
class NodeViewRepository extends ServiceEntityRepository
|
||||
{
|
||||
public function __construct(ManagerRegistry $registry)
|
||||
{
|
||||
parent::__construct($registry, NodeView::class);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue