generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Parsed.php
46 lines (39 loc) · 898 Bytes
/
Parsed.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
declare(strict_types=1);
/**
* Copyright (c) 2020-2024 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
*
* @see https://github.com/ergebnis/front-matter
*/
namespace Ergebnis\FrontMatter;
/**
* @psalm-immutable
*/
final class Parsed
{
private function __construct(
private readonly FrontMatter $frontMatter,
private readonly BodyMatter $bodyMatter,
) {
}
public static function create(
FrontMatter $frontMatter,
BodyMatter $bodyMatter,
): self {
return new self(
$frontMatter,
$bodyMatter,
);
}
public function frontMatter(): FrontMatter
{
return $this->frontMatter;
}
public function bodyMatter(): BodyMatter
{
return $this->bodyMatter;
}
}