Completed
Push — master ( 5a2c46...47cba7 )
by Jarek
11s
created

Contact   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 1
dl 0
loc 37
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace FSi\FixturesBundle\CustomAdmin;
4
5
use FSi\Bundle\AdminBundle\Doctrine\Admin\ResourceElement;
6
7
class Contact extends ResourceElement
8
{
9
    /**
10
     * @return string
11
     */
12
    public function getClassName()
13
    {
14
    }
15
16
    /**
17
     * ID will appear in routes:
18
     * - http://example.com/admin/{name}/list
19
     * - http://example.com/admin/{name}/edit
20
     * etc.
21
     *
22
     * @return string
23
     */
24
    public function getId()
25
    {
26
    }
27
28
    /**
29
     * Name is a simple string that can be translated.
30
     *
31
     * @return string
32
     */
33
    public function getName()
34
    {
35
    }
36
37
    /**
38
     * {@inheritdoc}
39
     */
40
    public function getKey()
41
    {
42
    }
43
}
44