Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[CLEANUP] Avoid Hungarian notation in OutputFormat (part 5)
Part of #756
  • Loading branch information
oliverklee committed Mar 8, 2025
commit 2a7676bbf74598397fc37fffb84196ec0a31a9f9
12 changes: 6 additions & 6 deletions src/OutputFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ class OutputFormat
*
* @var string
*/
private $sSpaceBeforeSelectorSeparator = '';
private $spaceBeforeSelectorSeparator = '';

/**
* @var string
*/
private $sSpaceAfterSelectorSeparator = ' ';
private $spaceAfterSelectorSeparator = ' ';

/**
* This is what’s inserted before the separator in value lists, by default.
Expand Down Expand Up @@ -421,15 +421,15 @@ public function setAfterAtRuleBlock(string $content): self
*/
public function getSpaceBeforeSelectorSeparator(): string
{
return $this->sSpaceBeforeSelectorSeparator;
return $this->spaceBeforeSelectorSeparator;
}

/**
* @return $this fluent interface
*/
public function setSpaceBeforeSelectorSeparator(string $whitespace): self
{
$this->sSpaceBeforeSelectorSeparator = $whitespace;
$this->spaceBeforeSelectorSeparator = $whitespace;

return $this;
}
Expand All @@ -439,15 +439,15 @@ public function setSpaceBeforeSelectorSeparator(string $whitespace): self
*/
public function getSpaceAfterSelectorSeparator(): string
{
return $this->sSpaceAfterSelectorSeparator;
return $this->spaceAfterSelectorSeparator;
}

/**
* @return $this fluent interface
*/
public function setSpaceAfterSelectorSeparator(string $whitespace): self
{
$this->sSpaceAfterSelectorSeparator = $whitespace;
$this->spaceAfterSelectorSeparator = $whitespace;

return $this;
}
Expand Down