You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							895 B
						
					
					
				
			
		
		
	
	
							27 lines
						
					
					
						
							895 B
						
					
					
				<?php
 | 
						|
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Chamilo\CoreBundle\Repository;
 | 
						|
 | 
						|
use Chamilo\CoreBundle\Entity\XApiSharedStatement;
 | 
						|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
 | 
						|
use Doctrine\Persistence\ManagerRegistry;
 | 
						|
 | 
						|
/**
 | 
						|
 * @extends ServiceEntityRepository<XApiSharedStatement>
 | 
						|
 *
 | 
						|
 * @method XApiSharedStatement|null find($id, $lockMode = null, $lockVersion = null)
 | 
						|
 * @method XApiSharedStatement|null findOneBy(array $criteria, array $orderBy = null)
 | 
						|
 * @method XApiSharedStatement[]    findAll()
 | 
						|
 * @method XApiSharedStatement[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
 | 
						|
 */
 | 
						|
class XApiSharedStatementRepository extends ServiceEntityRepository
 | 
						|
{
 | 
						|
    public function __construct(ManagerRegistry $registry)
 | 
						|
    {
 | 
						|
        parent::__construct($registry, XApiSharedStatement::class);
 | 
						|
    }
 | 
						|
}
 | 
						|
 |