|
1234567891011121314151617181920 |
- <?php
-
- namespace Lc\SovBundle\Repository\File;
-
- use Lc\SovBundle\Model\File\FileInterface;
- use Lc\SovBundle\Repository\AbstractRepository;
- /**
- * @method FileInterface|null find($id, $lockMode = null, $lockVersion = null)
- * @method FileInterface|null findOneBy(array $criteria, array $orderBy = null)
- * @method FileInterface[] findAll()
- * @method FileInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
- */
- class FileRepository extends AbstractRepository
- {
- public function getInterfaceClass()
- {
- return FileInterface::class;
- }
-
- }
|