Completed
Pull Request — master (#6412)
by Jarek
10:55
created

DDC6412File::getId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Doctrine\Tests\Models\DDC6412;
4
5
/**
6
 * @Entity
7
 */
8
class DDC6412File
9
{
10
    /**
11
     * @Column(type="integer")
12
     * @GeneratedValue
13
     */
14
    public $id;
15
    
16
    /**
17
     * @Column(length=50, name="file_name")
18
     */
19
    public $name;
20
21
    public function getId() {
22
        return $this->id;
23
    }
24
25
    public function setName($name) {
26
        $this->name = $name;
27
    }
28
29
    public function getName() {
30
        return $this->name;
31
    }
32
}
33
34