|
- <?php
-
- namespace Lc\AdminBundle\Repository\Cms;
-
- use Lc\AdminBundle\IModel\Cms\FileInterface;
- use Lc\AdminBundle\Repository\BaseRepository;
- /**
- * @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 BaseRepository
- {
- public function getInterfaceClass()
- {
- return FileInterface::class;
- }
-
- }
|