Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/main/inc/entity/repository/gradebook_result_repository...

34 lines
716 B

<?php
namespace Entity\Repository;
use \db;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class GradebookResultRepository extends \EntityRepository
{
/**
* @return \Entity\Repository\GradebookResultRepository
*/
public static function instance(){
static $result = false;
if($result === false){
$result = db::instance()->get_repository('\Entity\GradebookResult');
}
return $result;
}
/**
*
* @param EntityManager $em The EntityManager to use.
* @param ClassMetadata $class The class descriptor.
*/
public function __construct($em, $class){
parent::__construct($em, $class);
}
}