Completed
Pull Request — master (#328)
by
unknown
07:15
created

AbstractUpdateTheme   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 25
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getTheme() 0 4 1
1
<?php
2
3
namespace CultuurNet\UDB3\Offer\Commands;
4
5
use CultuurNet\UDB3\Theme;
6
7
abstract class AbstractUpdateTheme extends AbstractCommand
8
{
9
    /**
10
     * @var Theme
11
     */
12
    protected $theme;
13
14
    /**
15
     * @param string $itemId
16
     * @param Theme $theme
17
     */
18
    public function __construct($itemId, Theme $theme)
19
    {
20
        parent::__construct($itemId);
21
        $this->theme = $theme;
22
    }
23
24
    /**
25
     * @return Theme
26
     */
27
    public function getTheme()
28
    {
29
        return $this->theme;
30
    }
31
}
32