Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 39 and 402] [Versions 39 and 403]

   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  }