Skip to content

Commit 67eb105

Browse files
authored
[CLEANUP] Avoid Hungarian notation in OutputFormat (part 2) (#1100)
Part of #756
1 parent a031106 commit 67eb105

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
@@ -277,15 +277,15 @@ public function setSpaceAfterRuleName(string $whitespace): self
277277
*/
278278
public function getSpaceBeforeRules(): string
279279
{
280-
return $this->sSpaceBeforeRules;
280+
return $this->spaceBeforeRules;
281281
}
282282

283283
/**
284284
* @return $this fluent interface
285285
*/
286286
public function setSpaceBeforeRules(string $whitespace): self
287287
{
288-
$this->sSpaceBeforeRules = $whitespace;
288+
$this->spaceBeforeRules = $whitespace;
289289

290290
return $this;
291291
}
@@ -295,15 +295,15 @@ public function setSpaceBeforeRules(string $whitespace): self
295295
*/
296296
public function getSpaceAfterRules(): string
297297
{
298-
return $this->sSpaceAfterRules;
298+
return $this->spaceAfterRules;
299299
}
300300

301301
/**
302302
* @return $this fluent interface
303303
*/
304304
public function setSpaceAfterRules(string $whitespace): self
305305
{
306-
$this->sSpaceAfterRules = $whitespace;
306+
$this->spaceAfterRules = $whitespace;
307307

308308
return $this;
309309
}
@@ -313,15 +313,15 @@ public function setSpaceAfterRules(string $whitespace): self
313313
*/
314314
public function getSpaceBetweenRules(): string
315315
{
316-
return $this->sSpaceBetweenRules;
316+
return $this->spaceBetweenRules;
317317
}
318318

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

326326
return $this;
327327
}

0 commit comments

Comments
 (0)