Passed
Push — static-analysis ( d8a1cf...2cdeb5 )
by SignpostMarv
07:38 queued 04:26
created

SchemaItemTrait::setDoc()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 5
ccs 3
cts 3
cp 1
crap 1
rs 9.4285
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 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)
39
    {
40 47
        $this->doc = $doc;
41
42 47
        return $this;
43
    }
44
}
45