diff --git a/src/OutputFormat.php b/src/OutputFormat.php index 0d83c4ee..45b213e6 100644 --- a/src/OutputFormat.php +++ b/src/OutputFormat.php @@ -43,17 +43,17 @@ class OutputFormat /** * @var string */ - private $sSpaceBeforeRules = ''; + private $spaceBeforeRules = ''; /** * @var string */ - private $sSpaceAfterRules = ''; + private $spaceAfterRules = ''; /** * @var string */ - private $sSpaceBetweenRules = ''; + private $spaceBetweenRules = ''; /** * @var string @@ -313,7 +313,7 @@ public function setSpaceAfterRuleName(string $whitespace): self */ public function getSpaceBeforeRules(): string { - return $this->sSpaceBeforeRules; + return $this->spaceBeforeRules; } /** @@ -321,7 +321,7 @@ public function getSpaceBeforeRules(): string */ public function setSpaceBeforeRules(string $whitespace): self { - $this->sSpaceBeforeRules = $whitespace; + $this->spaceBeforeRules = $whitespace; return $this; } @@ -331,7 +331,7 @@ public function setSpaceBeforeRules(string $whitespace): self */ public function getSpaceAfterRules(): string { - return $this->sSpaceAfterRules; + return $this->spaceAfterRules; } /** @@ -339,7 +339,7 @@ public function getSpaceAfterRules(): string */ public function setSpaceAfterRules(string $whitespace): self { - $this->sSpaceAfterRules = $whitespace; + $this->spaceAfterRules = $whitespace; return $this; } @@ -349,7 +349,7 @@ public function setSpaceAfterRules(string $whitespace): self */ public function getSpaceBetweenRules(): string { - return $this->sSpaceBetweenRules; + return $this->spaceBetweenRules; } /** @@ -357,7 +357,7 @@ public function getSpaceBetweenRules(): string */ public function setSpaceBetweenRules(string $whitespace): self { - $this->sSpaceBetweenRules = $whitespace; + $this->spaceBetweenRules = $whitespace; return $this; }