1 | <?php |
||
10 | class Tagging implements TaggingInterface |
||
11 | { |
||
12 | use OriginatorTrait; |
||
13 | |||
14 | /** |
||
15 | * @var int |
||
16 | */ |
||
17 | protected $id; |
||
18 | |||
19 | /** |
||
20 | * @var TagInterface |
||
21 | */ |
||
22 | protected $tag; |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function getId() |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function getTag() |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function setTag(TagInterface $tag = null) |
||
47 | } |
||
48 |