Skip to content

Commit 7d45a7f

Browse files
authored
[CLEANUP] Avoid Hungarian notation in OutputFormat (part 3) (#1114)
Part of #756
1 parent 8dcfa91 commit 7d45a7f

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
@@ -58,17 +58,17 @@ class OutputFormat
5858
/**
5959
* @var string
6060
*/
61-
private $sSpaceBeforeBlocks = '';
61+
private $spaceBeforeBlocks = '';
6262

6363
/**
6464
* @var string
6565
*/
66-
private $sSpaceAfterBlocks = '';
66+
private $spaceAfterBlocks = '';
6767

6868
/**
6969
* @var string
7070
*/
71-
private $sSpaceBetweenBlocks = "\n";
71+
private $spaceBetweenBlocks = "\n";
7272

7373
/**
7474
* Content injected in and around at-rule blocks.
@@ -331,15 +331,15 @@ public function setSpaceBetweenRules(string $whitespace): self
331331
*/
332332
public function getSpaceBeforeBlocks(): string
333333
{
334-
return $this->sSpaceBeforeBlocks;
334+
return $this->spaceBeforeBlocks;
335335
}
336336

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

344344
return $this;
345345
}
@@ -349,15 +349,15 @@ public function setSpaceBeforeBlocks(string $whitespace): self
349349
*/
350350
public function getSpaceAfterBlocks(): string
351351
{
352-
return $this->sSpaceAfterBlocks;
352+
return $this->spaceAfterBlocks;
353353
}
354354

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

362362
return $this;
363363
}
@@ -367,15 +367,15 @@ public function setSpaceAfterBlocks(string $whitespace): self
367367
*/
368368
public function getSpaceBetweenBlocks(): string
369369
{
370-
return $this->sSpaceBetweenBlocks;
370+
return $this->spaceBetweenBlocks;
371371
}
372372

373373
/**
374374
* @return $this fluent interface
375375
*/
376376
public function setSpaceBetweenBlocks(string $whitespace): self
377377
{
378-
$this->sSpaceBetweenBlocks = $whitespace;
378+
$this->spaceBetweenBlocks = $whitespace;
379379

380380
return $this;
381381
}

0 commit comments

Comments
 (0)