<?php
namespace Symfony\Component\Yaml;
use Symfony\Component\Yaml\Tag\TaggedValue;
class Dumper
{
private int $indentation;
public function __construct(int $indentation = 4)
{
if ($indentation < 1) {
throw new \InvalidArgumentException('The indentation must be greater than zero.');
}
$this->indentation = $indentation;
}