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
*/
private $depth;
private $indents;
private $level;
* @var string
private $serviceAliasingType;
private $indentsCommentsWithoutParent;
* @param int $depth
* @param int $indents
* @param int $level
* @param string $serviceAliasingType
* @param string $indentsCommentsWithoutParent
public function __construct(
int $depth,
int $indents,
int $level,
string $serviceAliasingType,
string $indentsCommentsWithoutParent
) {
$this->depth = $depth;
$this->indents = $indents;
$this->level = $level;
$this->serviceAliasingType = $serviceAliasingType;
$this->indentsCommentsWithoutParent = $indentsCommentsWithoutParent;
}
* @return int
public function getDepth(): int
return $this->depth;
public function getIndents(): int
return $this->indents;
public function getLevel(): int
return $this->level;
* @return string
public function getServiceAliasingType(): string
return $this->serviceAliasingType;
public function getIndentsCommentsWithoutParent(): string
return $this->indentsCommentsWithoutParent;