From 3b591c6b521da1915192092482a9c2df12d68035 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 6 Mar 2025 18:21:43 +0100 Subject: [PATCH] [CLEANUP] Avoid Hungarian notation in `OutputFormat` (part 2) Part of #756 --- src/OutputFormat.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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; }