@@ -58,17 +58,17 @@ class OutputFormat
58
58
/**
59
59
* @var string
60
60
*/
61
- private $ sSpaceBeforeBlocks = '' ;
61
+ private $ spaceBeforeBlocks = '' ;
62
62
63
63
/**
64
64
* @var string
65
65
*/
66
- private $ sSpaceAfterBlocks = '' ;
66
+ private $ spaceAfterBlocks = '' ;
67
67
68
68
/**
69
69
* @var string
70
70
*/
71
- private $ sSpaceBetweenBlocks = "\n" ;
71
+ private $ spaceBetweenBlocks = "\n" ;
72
72
73
73
/**
74
74
* Content injected in and around at-rule blocks.
@@ -331,15 +331,15 @@ public function setSpaceBetweenRules(string $whitespace): self
331
331
*/
332
332
public function getSpaceBeforeBlocks (): string
333
333
{
334
- return $ this ->sSpaceBeforeBlocks ;
334
+ return $ this ->spaceBeforeBlocks ;
335
335
}
336
336
337
337
/**
338
338
* @return $this fluent interface
339
339
*/
340
340
public function setSpaceBeforeBlocks (string $ whitespace ): self
341
341
{
342
- $ this ->sSpaceBeforeBlocks = $ whitespace ;
342
+ $ this ->spaceBeforeBlocks = $ whitespace ;
343
343
344
344
return $ this ;
345
345
}
@@ -349,15 +349,15 @@ public function setSpaceBeforeBlocks(string $whitespace): self
349
349
*/
350
350
public function getSpaceAfterBlocks (): string
351
351
{
352
- return $ this ->sSpaceAfterBlocks ;
352
+ return $ this ->spaceAfterBlocks ;
353
353
}
354
354
355
355
/**
356
356
* @return $this fluent interface
357
357
*/
358
358
public function setSpaceAfterBlocks (string $ whitespace ): self
359
359
{
360
- $ this ->sSpaceAfterBlocks = $ whitespace ;
360
+ $ this ->spaceAfterBlocks = $ whitespace ;
361
361
362
362
return $ this ;
363
363
}
@@ -367,15 +367,15 @@ public function setSpaceAfterBlocks(string $whitespace): self
367
367
*/
368
368
public function getSpaceBetweenBlocks (): string
369
369
{
370
- return $ this ->sSpaceBetweenBlocks ;
370
+ return $ this ->spaceBetweenBlocks ;
371
371
}
372
372
373
373
/**
374
374
* @return $this fluent interface
375
375
*/
376
376
public function setSpaceBetweenBlocks (string $ whitespace ): self
377
377
{
378
- $ this ->sSpaceBetweenBlocks = $ whitespace ;
378
+ $ this ->spaceBetweenBlocks = $ whitespace ;
379
379
380
380
return $ this ;
381
381
}
0 commit comments