Completed
Push — develop ( 29208e...50a0ec )
by Adrien
05:34
created

Escher   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 60
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 60
ccs 0
cts 8
cp 0
rs 10
c 0
b 0
f 0
wmc 4
lcom 2
cbo 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getDggContainer() 0 4 1
A setDggContainer() 0 4 1
A getDgContainer() 0 4 1
A setDgContainer() 0 4 1
1
<?php
2
3
namespace PhpOffice\PhpSpreadsheet\Shared;
4
5
class Escher
6
{
7
    /**
8
     * Drawing Group Container.
9
     *
10
     * @var Escher\DggContainer
11
     */
12
    private $dggContainer;
13
14
    /**
15
     * Drawing Container.
16
     *
17
     * @var Escher\DgContainer
18
     */
19
    private $dgContainer;
20
21
    /**
22
     * Get Drawing Group Container.
23
     *
24
     * @return Escher\DggContainer
25
     */
26
    public function getDggContainer()
27
    {
28
        return $this->dggContainer;
29
    }
30
31
    /**
32
     * Set Drawing Group Container.
33
     *
34
     * @param Escher\DggContainer $dggContainer
35
     *
36
     * @return Escher\DggContainer
37
     */
38
    public function setDggContainer($dggContainer)
39
    {
40
        return $this->dggContainer = $dggContainer;
41
    }
42
43
    /**
44
     * Get Drawing Container.
45
     *
46
     * @return Escher\DgContainer
47
     */
48
    public function getDgContainer()
49
    {
50
        return $this->dgContainer;
51
    }
52
53
    /**
54
     * Set Drawing Container.
55
     *
56
     * @param Escher\DgContainer $dgContainer
57
     *
58
     * @return Escher\DgContainer
59
     */
60
    public function setDgContainer($dgContainer)
61
    {
62
        return $this->dgContainer = $dgContainer;
63
    }
64
}
65