NamedModel
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 8

1 Method

Rating   Name   Duplication   Size   Complexity  
getName() 0 1 ?
1
<?php
2
/**
3
 * This file contains a model interface
4
 *
5
 * @package    BZiON\Models
6
 * @license    https://github.com/allejo/bzion/blob/master/LICENSE.md GNU General Public License Version 3
7
 */
8
9
/**
10
 * A Model that has a name
11
 * @package    BZiON\Models
12
 */
13
interface NamedModel
14
{
15
    /**
16
     * Get the name of the entity
17
     * @return string
18
     */
19
    public function getName();
20
}
21