Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
namespace PhpOffice\PhpSpreadsheet\Shared;
4
 
5
class Escher
6
{
7
    /**
8
     * Drawing Group Container.
9
     */
10
    private ?Escher\DggContainer $dggContainer = null;
11
 
12
    /**
13
     * Drawing Container.
14
     */
15
    private ?Escher\DgContainer $dgContainer = null;
16
 
17
    /**
18
     * Get Drawing Group Container.
19
     */
20
    public function getDggContainer(): ?Escher\DggContainer
21
    {
22
        return $this->dggContainer;
23
    }
24
 
25
    /**
26
     * Set Drawing Group Container.
27
     */
28
    public function setDggContainer(Escher\DggContainer $dggContainer): Escher\DggContainer
29
    {
30
        return $this->dggContainer = $dggContainer;
31
    }
32
 
33
    /**
34
     * Get Drawing Container.
35
     */
36
    public function getDgContainer(): ?Escher\DgContainer
37
    {
38
        return $this->dgContainer;
39
    }
40
 
41
    /**
42
     * Set Drawing Container.
43
     */
44
    public function setDgContainer(Escher\DgContainer $dgContainer): Escher\DgContainer
45
    {
46
        return $this->dgContainer = $dgContainer;
47
    }
48
}