Skip to content

Commit 3b591c6

Browse files
committed
[CLEANUP] Avoid Hungarian notation in OutputFormat (part 2)
Part of #756
1 parent fff77eb commit 3b591c6

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
@@ -313,15 +313,15 @@ public function setSpaceAfterRuleName(string $whitespace): self
313313
*/
314314
public function getSpaceBeforeRules(): string
315315
{
316-
return $this->sSpaceBeforeRules;
316+
return $this->spaceBeforeRules;
317317
}
318318

319319
/**
320320
* @return $this fluent interface
321321
*/
322322
public function setSpaceBeforeRules(string $whitespace): self
323323
{
324-
$this->sSpaceBeforeRules = $whitespace;
324+
$this->spaceBeforeRules = $whitespace;
325325

326326
return $this;
327327
}
@@ -331,15 +331,15 @@ public function setSpaceBeforeRules(string $whitespace): self
331331
*/
332332
public function getSpaceAfterRules(): string
333333
{
334-
return $this->sSpaceAfterRules;
334+
return $this->spaceAfterRules;
335335
}
336336

337337
/**
338338
* @return $this fluent interface
339339
*/
340340
public function setSpaceAfterRules(string $whitespace): self
341341
{
342-
$this->sSpaceAfterRules = $whitespace;
342+
$this->spaceAfterRules = $whitespace;
343343

344344
return $this;
345345
}
@@ -349,15 +349,15 @@ public function setSpaceAfterRules(string $whitespace): self
349349
*/
350350
public function getSpaceBetweenRules(): string
351351
{
352-
return $this->sSpaceBetweenRules;
352+
return $this->spaceBetweenRules;
353353
}
354354

355355
/**
356356
* @return $this fluent interface
357357
*/
358358
public function setSpaceBetweenRules(string $whitespace): self
359359
{
360-
$this->sSpaceBetweenRules = $whitespace;
360+
$this->spaceBetweenRules = $whitespace;
361361

362362
return $this;
363363
}

0 commit comments

Comments
 (0)