8000 [CLEANUP] Avoid Hungarian notation in `OutputFormat` (part 6) · MyIntervals/PHP-CSS-Parser@8f98151 · GitHub
Skip to content

Commit 8f98151

Browse files
committed
[CLEANUP] Avoid Hungarian notation in OutputFormat (part 6)
Part of #756
1 parent c8501c8 commit 8f98151

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/OutputFormat.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -99,28 +99,28 @@ class OutputFormat
9999
*
100100
* @var string
101101
*/
102-
private $sSpaceBeforeListArgumentSeparator = '';
102+
private $spaceBeforeListArgumentSeparator = '';
103103

104104
/**
105105
* Keys are separators (e.g. `,`). Values are the space sequence to insert, or an empty string.
106106
*
107107
* @var array<non-empty-string, string>
108108
*/
109-
private $aSpaceBeforeListArgumentSeparators = [];
109+
private $spaceBeforeListArgumentSeparators = [];
110110

111111
/**
112112
* This is what’s inserted after the separator in value lists, by default.
113113
*
114114
* @var string
115115
*/
116-
private $sSpaceAfterListArgumentSeparator = '';
116+
private $spaceAfterListArgumentSeparator = '';
117117

118118
/**
119119
* Keys are separators (e.g. `,`). Values are the space sequence to insert, or an empty string.
120120
*
121121
* @var array<non-empty-string, string>
122122
*/
123-
private $aSpaceAfterListArgumentSeparators = [];
123+
private $spaceAfterListArgumentSeparators = [];
124124

125125
/**
126126
* @var string
@@ -457,15 +457,15 @@ public function setSpaceAfterSelectorSeparator(string $whitespace): self
457457
*/
458458
public function getSpaceBeforeListArgumentSeparator(): string
459459
{
460-
return $this->sSpaceBeforeListArgumentSeparator;
460+
return $this->spaceBeforeListArgumentSeparator;
461461
}
462462

463463
/**
464464
* @return $this fluent interface
465465
*/
466466
public function setSpaceBeforeListArgumentSeparator(string $whitespace): self
467467
{
468-
$this->sSpaceBeforeListArgumentSeparator = $whitespace;
468+
$this->spaceBeforeListArgumentSeparator = $whitespace;
469469

470470
return $this;
471471
}
@@ -477,7 +477,7 @@ public function setSpaceBeforeListArgumentSeparator(string $whitespace): self
477477
*/
478478
public function getSpaceBeforeListArgumentSeparators(): array
479479
{
480-
return $this->aSpaceBeforeListArgumentSeparators;
480+
return $this->spaceBeforeListArgumentSeparators;
481481
}
482482

483483
/**
@@ -487,7 +487,7 @@ public function getSpaceBeforeListArgumentSeparators(): array
487487
*/
488488
public function setSpaceBeforeListArgumentSeparators(array $separatorSpaces): self
489489
{
490-
$this->aSpaceBeforeListArgumentSeparators = $separatorSpaces;
490+
$this->spaceBeforeListArgumentSeparators = $separatorSpaces;
491491

492492
return $this;
493493
}
@@ -497,15 +497,15 @@ public function setSpaceBeforeListArgumentSeparators(array $separatorSpaces): se
497497
*/
498498
public function getSpaceAfterListArgumentSeparator(): string
499499
{
500-
return $this->sSpaceAfterListArgumentSeparator;
500+
return $this->spaceAfterListArgumentSeparator;
501501
}
502502

503503
/**
504504
* @return $this fluent interface
505505
*/
506506
public function setSpaceAfterListArgumentSeparator(string $whitespace): self
507507
{
508-
$this->sSpaceAfterListArgumentSeparator = $whitespace;
508+
$this->spaceAfterListArgumentSeparator = $whitespace;
509509

510510
return $this;
511511
}
@@ -517,7 +517,7 @@ public function setSpaceAfterListArgumentSeparator(string $whitespace): self
517517
*/
518518
public function getSpaceAfterListArgumentSeparators(): array
519519
{
520-
return $this->aSpaceAfterListArgumentSeparators;
520+
return $this->spaceAfterListArgumentSeparators;
521521
}
522522

523523
/**
@@ -527,7 +527,7 @@ public function getSpaceAfterListArgumentSeparators(): array
527527
*/
528528
public function setSpaceAfterListArgumentSeparators(array $separatorSpaces): self
529529
{
530-
$this->aSpaceAfterListArgumentSeparators = $separatorSpaces;
530+
$this->spaceAfterListArgumentSeparators = $separatorSpaces;
531531

532532
return $this;
533533
}

0 commit comments

Comments
 (0)