Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | trait TaggableElementTrait |
||
9 | { |
||
10 | /** |
||
11 | * The applied tag (if any). |
||
12 | * |
||
13 | * @var \Ocsp\Asn1\Tag|null |
||
14 | */ |
||
15 | private $tag; |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | * |
||
20 | * @see \Ocsp\Asn1\TaggableElement::getTag() |
||
21 | */ |
||
22 | 3 | public function getTag() |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | * |
||
30 | * @see \Ocsp\Asn1\TaggableElement::setTag() |
||
31 | */ |
||
32 | 3 | public function setTag(Tag $value = null) |
|
39 |