generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ToMultipleAssignmentsFrontMatterConverter.php
46 lines (37 loc) · 1.17 KB
/
ToMultipleAssignmentsFrontMatterConverter.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) 2023-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/twig-front-matter
*/
namespace Ergebnis\Twig\FrontMatter\Converter;
use Ergebnis\Twig\FrontMatter\Expression;
final class ToMultipleAssignmentsFrontMatterConverter implements FrontMatterConverter
{
public function __construct(private readonly bool $force)
{
}
public function convert(array $data): string
{
$assignments = [];
foreach ($data as $key => $value) {
try {
$name = Expression\Name::fromString($key);
} catch (\InvalidArgumentException) {
continue;
}
$assignments[] = Expression\Assignment::create(
$name,
Expression\Value::fromRaw($value),
$this->force,
);
}
return \implode("\n", \array_map(static function (Expression\Assignment $assignment): string {
return $assignment->toString();
}, $assignments));
}
}