Language
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 7
wmc 0
lcom 0
cbo 0
1
<?php
2
/**
3
 * Created by IntelliJ IDEA.
4
 * User: onigoetz
5
 * Date: 23.02.14
6
 * Time: 15:28
7
 */
8
namespace Rocket\Translation\Model;
9
10
use Eloquent;
11
12
class Language extends Eloquent
13
{
14
    /**
15
     * @var string The table associated with the model.
16
     */
17
    protected $table = 'languages';
18
}
19