Completed
Pull Request — master (#18)
by SignpostMarv
02:25
created

SchemaItemTrait   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Test Coverage

Coverage 71.43%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 38
ccs 5
cts 7
cp 0.7143
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setDoc() 0 5 1
A getDoc() 0 3 1
A getSchema() 0 3 1
1
<?php
2
3
namespace GoetasWebservices\XML\XSDReader\Schema;
4
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 45
    public function getSchema()
21
    {
22 45
        return $this->schema;
23
    }
24
25
    /**
26
     * @return string
27
     */
28
    public function getDoc()
29
    {
30
        return $this->doc;
31
    }
32
33
    /**
34
     * @param string $doc
35
     *
36
     * @return $this
37
     */
38 45
    public function setDoc($doc)
39
    {
40 45
        $this->doc = $doc;
41
42 45
        return $this;
43
    }
44
}
45