for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace YamlStandards\Model\Config;
class StandardParametersData
{
/**
* @var int|null
*/
private $depth;
private $indents;
private $level;
* @param int|null $depth
* @param int|null $indents
* @param int|null $level
public function __construct(?int $depth, ?int $indents, ?int $level)
$this->depth = $depth;
$this->indents = $indents;
$this->level = $level;
}
* @return int|null
public function getDepth(): ?int
return $this->depth;
public function getIndents(): ?int
return $this->indents;
public function getLevel(): ?int
return $this->level;