Passed
Push — feature/initial-implementation ( f3915b...fbd338 )
by Fike
02:22
created

AbstractOptionAnnotation   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getValue() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace AmaTeam\ElasticSearch\API\Annotation\Indexing\Infrastructure;
6
7
abstract class AbstractOptionAnnotation implements OptionAnnotationInterface
8
{
9
    public $value;
10
11
    public function getValue()
12
    {
13
        return $this->value;
14
    }
15
}
16