24 lines
407 B
PHP
24 lines
407 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Dumbastro\FitsPhp;
|
|
|
|
/**
|
|
* A FITS keyword record
|
|
* @todo Add types for max lengths?
|
|
*/
|
|
readonly class Keyword
|
|
{
|
|
public function __construct(
|
|
public string $name,
|
|
public ?string $value,
|
|
public ?string $comment,
|
|
) {}
|
|
|
|
public function toString(): string
|
|
{
|
|
return "{$this->name}={$this->value}/{$this->comment}";
|
|
}
|
|
}
|