Completed
Push — master ( a6c11c...395216 )
by Jordi Sala
10s
created

TranslatableEntityTranslation::setTitle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Sonata\TranslationBundle\Tests\Functional\Fixtures\Model\Knplabs;
4
5
use Knp\DoctrineBehaviors\Model;
6
7
class TranslatableEntityTranslation
8
{
9
    use Model\Translatable\Translation;
10
11
    private $title;
12
13
    public function getTitle()
14
    {
15
        return $this->title;
16
    }
17
18
    public function setTitle($title)
19
    {
20
        $this->title = $title;
21
    }
22
}
23