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

AbstractUpdateTheme::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 2
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