Skip to content

Commit af2df79

Browse files
committed
Make the getters @internal
1 parent 04197aa commit af2df79

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed

src/OutputFormat.php

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@ public function __call(string $sMethodName, array $aArguments)
232232
}
233233
}
234234

235+
/**
236+
* @internal
237+
*/
235238
public function getStringQuotingType(): string
236239
{
237240
return $this->sStringQuotingType;
@@ -247,6 +250,9 @@ public function setStringQuotingType(string $quotingType): self
247250
return $this;
248251
}
249252

253+
/**
254+
* @internal
255+
*/
250256
public function getRGBHashNotation(): bool
251257
{
252258
return $this->bRGBHashNotation;
@@ -262,6 +268,9 @@ public function setRGBHashNotation(bool $rgbHashNotation): self
262268
return $this;
263269
}
264270

271+
/**
272+
* @internal
273+
*/
265274
public function getSemicolonAfterLastRule(): bool
266275
{
267276
return $this->bSemicolonAfterLastRule;
@@ -277,6 +286,9 @@ public function setSemicolonAfterLastRule(bool $semicolonAfterLastRule): self
277286
return $this;
278287
}
279288

289+
/**
290+
* @internal
291+
*/
280292
public function getSpaceAfterRuleName(): string
281293
{
282294
return $this->sSpaceAfterRuleName;
@@ -292,6 +304,9 @@ public function setSpaceAfterRuleName(string $whitespace): self
292304
return $this;
293305
}
294306

307+
/**
308+
* @internal
309+
*/
295310
public function getSpaceBeforeRules(): string
296311
{
297312
return $this->sSpaceBeforeRules;
@@ -307,6 +322,9 @@ public function setSpaceBeforeRules(string $whitespace): self
307322
return $this;
308323
}
309324

325+
/**
326+
* @internal
327+
*/
310328
public function getSpaceAfterRules(): string
311329
{
312330
return $this->sSpaceAfterRules;
@@ -322,6 +340,9 @@ public function setSpaceAfterRules(string $whitespace): self
322340
return $this;
323341
}
324342

343+
/**
344+
* @internal
345+
*/
325346
public function getSpaceBetweenRules(): string
326347
{
327348
return $this->sSpaceBetweenRules;
@@ -337,6 +358,9 @@ public function setSpaceBetweenRules(string $whitespace): self
337358
return $this;
338359
}
339360

361+
/**
362+
* @internal
363+
*/
340364
public function getSpaceBeforeBlocks(): string
341365
{
342366
return $this->sSpaceBeforeBlocks;
@@ -352,6 +376,9 @@ public function setSpaceBeforeBlocks(string $whitespace): self
352376
return $this;
353377
}
354378

379+
/**
380+
* @internal
381+
*/
355382
public function getSpaceAfterBlocks(): string
356383
{
357384
return $this->sSpaceAfterBlocks;
@@ -367,6 +394,9 @@ public function setSpaceAfterBlocks(string $whitespace): self
367394
return $this;
368395
}
369396

397+
/**
398+
* @internal
399+
*/
370400
public function getSpaceBetweenBlocks(): string
371401
{
372402
return $this->sSpaceBetweenBlocks;
@@ -382,6 +412,9 @@ public function setSpaceBetweenBlocks(string $whitespace): self
382412
return $this;
383413
}
384414

415+
/**
416+
* @internal
417+
*/
385418
public function getBeforeAtRuleBlock(): string
386419
{
387420
return $this->sBeforeAtRuleBlock;
@@ -397,6 +430,9 @@ public function setBeforeAtRuleBlock(string $whitespace): self
397430
return $this;
398431
}
399432

433+
/**
434+
* @internal
435+
*/
400436
public function getAfterAtRuleBlock(): string
401437
{
402438
return $this->sAfterAtRuleBlock;
@@ -412,6 +448,9 @@ public function setAfterAtRuleBlock(string $whitespace): self
412448
return $this;
413449
}
414450

451+
/**
452+
* @internal
453+
*/
415454
public function getSpaceBeforeSelectorSeparator(): string
416455
{
417456
return $this->sSpaceBeforeSelectorSeparator;
@@ -427,6 +466,9 @@ public function setSpaceBeforeSelectorSeparator(string $whitespace): self
427466
return $this;
428467
}
429468

469+
/**
470+
* @internal
471+
*/
430472
public function getSpaceAfterSelectorSeparator(): string
431473
{
432474
return $this->sSpaceAfterSelectorSeparator;
@@ -442,6 +484,9 @@ public function setSpaceAfterSelectorSeparator(string $whitespace): self
442484
return $this;
443485
}
444486

487+
/**
488+
* @internal
489+
*/
445490
public function getSpaceBeforeListArgumentSeparator(): string
446491
{
447492
return $this->sSpaceBeforeListArgumentSeparator;
@@ -457,6 +502,9 @@ public function setSpaceBeforeListArgumentSeparator(string $whitespace): self
457502
return $this;
458503
}
459504

505+
/**
506+
* @internal
507+
*/
460508
public function getSpaceAfterListArgumentSeparator(): string
461509
{
462510
return $this->sSpaceAfterListArgumentSeparator;
@@ -472,6 +520,9 @@ public function setSpaceAfterListArgumentSeparator(string $whitespace): self
472520
return $this;
473521
}
474522

523+
/**
524+
* @internal
525+
*/
475526
public function getSpaceBeforeOpeningBrace(): string
476527
{
477528
return $this->sSpaceBeforeOpeningBrace;
@@ -487,6 +538,9 @@ public function setSpaceBeforeOpeningBrace(string $whitespace): self
487538
return $this;
488539
}
489540

541+
/**
542+
* @internal
543+
*/
490544
public function getBeforeDeclarationBlock(): string
491545
{
492546
return $this->sBeforeDeclarationBlock;
@@ -502,6 +556,9 @@ public function setBeforeDeclarationBlock(string $whitespace): self
502556
return $this;
503557
}
504558

559+
/**
560+
* @internal
561+
*/
505562
public function getAfterDeclarationBlockSelectors(): string
506563
{
507564
return $this->sAfterDeclarationBlockSelectors;
@@ -517,6 +574,9 @@ public function setAfterDeclarationBlockSelectors(string $whitespace): self
517574
return $this;
518575
}
519576

577+
/**
578+
* @internal
579+
*/
520580
public function getAfterDeclarationBlock(): string
521581
{
522582
return $this->sAfterDeclarationBlock;
@@ -532,6 +592,9 @@ public function setAfterDeclarationBlock(string $whitespace): self
532592
return $this;
533593
}
534594

595+
/**
596+
* @internal
597+
*/
535598
public function getIndentation(): string
536599
{
537600
return $this->sIndentation;
@@ -547,6 +610,9 @@ public function setIndentation(string $sIndentation): self
547610
return $this;
548611
}
549612

613+
/**
614+
* @internal
615+
*/
550616
public function getIgnoreExceptions(): bool
551617
{
552618
return $this->bIgnoreExceptions;
@@ -562,6 +628,9 @@ public function setIgnoreExceptions(bool $bIgnoreExceptions): self
562628
return $this;
563629
}
564630

631+
/**
632+
* @internal
633+
*/
565634
public function getRenderComments(): bool
566635
{
567636
return $this->bRenderComments;
@@ -577,6 +646,9 @@ public function setRenderComments(bool $bRenderComments): self
577646
return $this;
578647
}
579648

649+
/**
650+
* @internal
651+
*/
580652
public function getIndentationLevel(): int
581653
{
582654
return $this->iIndentationLevel;

0 commit comments

Comments
 (0)