MediaRepository
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
c 0
b 0
f 0
wmc 0
1
<?php
2
3
/**
4
 * This file is part of the <name> project.
5
 *
6
 * (c) <yourname> <youremail>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Chamilo\MediaBundle\PHPCR;
13
14
use Sonata\MediaBundle\PHPCR\BaseMediaRepository;
15
16
/**
17
 * This file has been generated by the EasyExtends bundle ( http://sonata-project.org/bundles/easy-extends ).
18
 *
19
 * References :
20
 *   query builder     : http://www.doctrine-project.org/docs/mongodb_odm/1.0/en/reference/query-builder-api.html
21
 *
22
 * @author <yourname> <youremail>
23
 */
24
class MediaRepository extends BaseMediaRepository
25
{
26
}
27