Skip to content

Commit ecdfd90

Browse files
committed
[CLEANUP] Avoid Hungarian notation in OutputFormat (part 2)
Part of #756
1 parent 9f7bbbe commit ecdfd90

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/OutputFormat.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ class OutputFormat
4343
/**
4444
* @var string
4545
*/
46-
private $sSpaceBeforeRules = '';
46+
private $spaceBeforeRules = '';
4747

4848
/**
4949
* @var string
5050
*/
51-
private $sSpaceAfterRules = '';
51+
private $spaceAfterRules = '';
5252

5353
/**
5454
* @var string
5555
*/
56-
private $sSpaceBetweenRules = '';
56+
private $spaceBetweenRules = '';
5757

5858
/**
5959
* @var string
@@ -328,15 +328,15 @@ public function setSpaceAfterRuleName(string $whitespace): self
328328
*/
329329
public function getSpaceBeforeRules(): string
330330
{
331-
return $this->sSpaceBeforeRules;
331+
return $this->spaceBeforeRules;
332332
}
333333

334334
/**
335335
* @return $this fluent interface
336336
*/
337337
public function setSpaceBeforeRules(string $whitespace): self
338338
{
339-
$this->sSpaceBeforeRules = $whitespace;
339+
$this->spaceBeforeRules = $whitespace;
340340

341341
return $this;
342342
}
@@ -346,15 +346,15 @@ public function setSpaceBeforeRules(string $whitespace): self
346346
*/
347347
public function getSpaceAfterRules(): string
348348
{
349-
return $this->sSpaceAfterRules;
349+
return $this->spaceAfterRules;
350350
}
351351

352352
/**
353353
* @return $this fluent interface
354354
*/
355355
public function setSpaceAfterRules(string $whitespace): self
356356
{
357-
$this->sSpaceAfterRules = $whitespace;
357+
$this->spaceAfterRules = $whitespace;
358358

359359
return $this;
360360
}
@@ -364,15 +364,15 @@ public function setSpaceAfterRules(string $whitespace): self
364364
*/
365365
public function getSpaceBetweenRules(): string
366366
{
367-
return $this->sSpaceBetweenRules;
367+
return $this->spaceBetweenRules;
368368
}
369369

370370
/**
371371
* @return $this fluent interface
372372
*/
373373
public function setSpaceBetweenRules(string $whitespace): self
374374
{
375-
$this->sSpaceBetweenRules = $whitespace;
375+
$this->spaceBetweenRules = $whitespace;
376376

377377
return $this;
378378
}

0 commit comments

Comments
 (0)