Passed
Push — master ( 15dae9...698027 )
by Julito
12:28
created

ToolBaseController::buildBreadcrumbs()   A

Complexity

Conditions 4
Paths 6

Size

Total Lines 36
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
eloc 18
nc 6
nop 2
dl 0
loc 36
rs 9.6666
c 0
b 0
f 0
1
<?php
2
/* For licensing terms, see /license.txt */
3
4
namespace Chamilo\CourseBundle\Controller;
5
6
use Chamilo\CoreBundle\Controller\BaseController;
7
8
/**
9
 * Each entity controller must extends this class.
10
 *
11
 * @abstract
12
 */
13
abstract class ToolBaseController extends BaseController implements CourseControllerInterface
14
{
15
    use CourseControllerTrait;
16
}
17