Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace OpenSpout\Writer\XLSX;
6
 
7
final readonly class Properties
8
{
9
    public function __construct(
10
        public ?string $title = 'Untitled Spreadsheet',
11
        public ?string $subject = null,
12
        public ?string $application = 'OpenSpout',
13
        public ?string $creator = 'OpenSpout',
14
        public ?string $lastModifiedBy = 'OpenSpout',
15
        public ?string $keywords = null,
16
        public ?string $description = null,
17
        public ?string $category = null,
18
        public ?string $language = null,
19
        /** @var array<string, string> $customProperties */
20
        public array $customProperties = [],
21
    ) {}
22
}