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

AbstractUpdateType   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 getType() 0 4 1
1
<?php
2
3
namespace CultuurNet\UDB3\Offer\Commands;
4
5
use CultuurNet\UDB3\Event\EventType;
6
7
abstract class AbstractUpdateType extends AbstractCommand
8
{
9
    /**
10
     * @var EventType
11
     */
12
    protected $type;
13
14
    /**
15
     * @param string $itemId
16
     * @param EventType $type
17
     */
18
    public function __construct($itemId, EventType $type)
19
    {
20
        parent::__construct($itemId);
21
        $this->type = $type;
22
    }
23
24
    /**
25
     * @return EventType
26
     */
27
    public function getType()
28
    {
29
        return $this->type;
30
    }
31
}
32