Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | trait SchemaItemTrait |
||
6 | { |
||
7 | /** |
||
8 | * @var Schema |
||
9 | */ |
||
10 | protected $schema; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $doc = ''; |
||
16 | |||
17 | /** |
||
18 | * @return Schema |
||
19 | */ |
||
20 | 47 | public function getSchema() |
|
21 | { |
||
22 | 47 | return $this->schema; |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | 2 | public function getDoc() |
|
29 | { |
||
30 | 2 | return $this->doc; |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @param string $doc |
||
35 | * |
||
36 | * @return $this |
||
37 | */ |
||
38 | 47 | public function setDoc($doc) |
|
43 | } |
||
44 | } |
||
45 |