Completed
Push — master ( 5c101e...4b6f03 )
by
unknown
01:47
created

SeoAwareTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A setSeoPage() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the Sonata Project package.
5
 *
6
 * (c) Thomas Rabaix <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Sonata\SeoBundle\Seo;
13
14
trait SeoAwareTrait
15
{
16
    /**
17
     * @var SeoPageInterface|null
18
     *
19
     * @required
20
     */
21
    protected $seoPage;
22
23
    public function setSeoPage(SeoPageInterface $seoPage = null)
24
    {
25
        $this->seoPage = $seoPage;
26
    }
27
}
28