Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.3.x will end 7 October 2024 (12 months).
  • Bug fixes for security issues in 4.3.x will end 21 April 2025 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.2.x is supported too.
   1  <?php
   2  
   3  declare(strict_types=1);
   4  
   5  namespace OpenSpout\Common\Entity\Cell;
   6  
   7  use OpenSpout\Common\Entity\Cell;
   8  use OpenSpout\Common\Entity\Style\Style;
   9  
  10  final class StringCell extends Cell
  11  {
  12      private string $value;
  13  
  14      public function __construct(string $value, ?Style $style)
  15      {
  16          $this->value = $value;
  17          parent::__construct($style);
  18      }
  19  
  20      public function getValue(): string
  21      {
  22          return $this->value;
  23      }
  24  }