Skip to content

Commit b313d9c

Browse files
committed
Make the getters @internal
1 parent c18b1ef commit b313d9c

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
@@ -234,6 +234,9 @@ public function __call(string $sMethodName, array $aArguments)
234234
}
235235
}
236236

237+
/**
238+
* @internal
239+
*/
237240
public function getStringQuotingType(): string
238241
{
239242
return $this->sStringQuotingType;
@@ -249,6 +252,9 @@ public function setStringQuotingType(string $quotingType): self
249252
return $this;
250253
}
251254

255+
/**
256+
* @internal
257+
*/
252258
public function getRGBHashNotation(): bool
253259
{
254260
return $this->bRGBHashNotation;
@@ -264,6 +270,9 @@ public function setRGBHashNotation(bool $rgbHashNotation): self
264270
return $this;
265271
}
266272

273+
/**
274+
* @internal
275+
*/
267276
public function getSemicolonAfterLastRule(): bool
268277
{
269278
return $this->bSemicolonAfterLastRule;
@@ -279,6 +288,9 @@ public function setSemicolonAfterLastRule(bool $semicolonAfterLastRule): self
279288
return $this;
280289
}
281290

291+
/**
292+
* @internal
293+
*/
282294
public function getSpaceAfterRuleName(): string
283295
{
284296
return $this->sSpaceAfterRuleName;
@@ -294,6 +306,9 @@ public function setSpaceAfterRuleName(string $whitespace): self
294306
return $this;
295307
}
296308

309+
/**
310+
* @internal
311+
*/
297312
public function getSpaceBeforeRules(): string
298313
{
299314
return $this->sSpaceBeforeRules;
@@ -309,6 +324,9 @@ public function setSpaceBeforeRules(string $whitespace): self
309324
return $this;
310325
}
311326

327+
/**
328+
* @internal
329+
*/
312330
public function getSpaceAfterRules(): string
313331
{
314332
return $this->sSpaceAfterRules;
@@ -324,6 +342,9 @@ public function setSpaceAfterRules(string $whitespace): self
324342
return $this;
325343
}
326344

345+
/**
346+
* @internal
347+
*/
327348
public function getSpaceBetweenRules(): string
328349
{
329350
return $this->sSpaceBetweenRules;
@@ -339,6 +360,9 @@ public function setSpaceBetweenRules(string $whitespace): self
339360
return $this;
340361
}
341362

363+
/**
364+
* @internal
365+
*/
342366
public function getSpaceBeforeBlocks(): string
343367
{
344368
return $this->sSpaceBeforeBlocks;
@@ -354,6 +378,9 @@ public function setSpaceBeforeBlocks(string $whitespace): self
354378
return $this;
355379
}
356380

381+
/**
382+
* @internal
383+
*/
357384
public function getSpaceAfterBlocks(): string
358385
{
359386
return $this->sSpaceAfterBlocks;
@@ -369,6 +396,9 @@ public function setSpaceAfterBlocks(string $whitespace): self
369396
return $this;
370397
}
371398

399+
/**
400+
* @internal
401+
*/
372402
public function getSpaceBetweenBlocks(): string
373403
{
374404
return $this->sSpaceBetweenBlocks;
@@ -384,6 +414,9 @@ public function setSpaceBetweenBlocks(string $whitespace): self
384414
return $this;
385415
}
386416

417+
/**
418+
* @internal
419+
*/
387420
public function getBeforeAtRuleBlock(): string
388421
{
389422
return $this->sBeforeAtRuleBlock;
@@ -399,6 +432,9 @@ public function setBeforeAtRuleBlock(string $whitespace): self
399432
return $this;
400433
}
401434

435+
/**
436+
* @internal
437+
*/
402438
public function getAfterAtRuleBlock(): string
403439
{
404440
return $this->sAfterAtRuleBlock;
@@ -414,6 +450,9 @@ public function setAfterAtRuleBlock(string $whitespace): self
414450
return $this;
415451
}
416452

453+
/**
454+
* @internal
455+
*/
417456
public function getSpaceBeforeSelectorSeparator(): string
418457
{
419458
return $this->sSpaceBeforeSelectorSeparator;
@@ -429,6 +468,9 @@ public function setSpaceBeforeSelectorSeparator(string $whitespace): self
429468
return $this;
430469
}
431470

471+
/**
472+
* @internal
473+
*/
432474
public function getSpaceAfterSelectorSeparator(): string
433475
{
434476
return $this->sSpaceAfterSelectorSeparator;
@@ -444,6 +486,9 @@ public function setSpaceAfterSelectorSeparator(string $whitespace): self
444486
return $this;
445487
}
446488

489+
/**
490+
* @internal
491+
*/
447492
public function getSpaceBeforeListArgumentSeparator(): string
448493
{
449494
return $this->sSpaceBeforeListArgumentSeparator;
@@ -459,6 +504,9 @@ public function setSpaceBeforeListArgumentSeparator(string $whitespace): self
459504
return $this;
460505
}
461506

507+
/**
508+
* @internal
509+
*/
462510
public function getSpaceAfterListArgumentSeparator(): string
463511
{
464512
return $this->sSpaceAfterListArgumentSeparator;
@@ -474,6 +522,9 @@ public function setSpaceAfterListArgumentSeparator(string $whitespace): self
474522
return $this;
475523
}
476524

525+
/**
526+
* @internal
527+
*/
477528
public function getSpaceBeforeOpeningBrace(): string
478529
{
479530
return $this->sSpaceBeforeOpeningBrace;
@@ -489,6 +540,9 @@ public function setSpaceBeforeOpeningBrace(string $whitespace): self
489540
return $this;
490541
}
491542

543+
/**
544+
* @internal
545+
*/
492546
public function getBeforeDeclarationBlock(): string
493547
{
494548
return $this->sBeforeDeclarationBlock;
@@ -504,6 +558,9 @@ public function setBeforeDeclarationBlock(string $whitespace): self
504558
return $this;
505559
}
506560

561+
/**
562+
* @internal
563+
*/
507564
public function getAfterDeclarationBlockSelectors(): string
508565
{
509566
return $this->sAfterDeclarationBlockSelectors;
@@ -519,6 +576,9 @@ public function setAfterDeclarationBlockSelectors(string $whitespace): self
519576
return $this;
520577
}
521578

579+
/**
580+
* @internal
581+
*/
522582
public function getAfterDeclarationBlock(): string
523583
{
524584
return $this->sAfterDeclarationBlock;
@@ -534,6 +594,9 @@ public function setAfterDeclarationBlock(string $whitespace): self
534594
return $this;
535595
}
536596

597+
/**
598+
* @internal
599+
*/
537600
public function getIndentation(): string
538601
{
539602
return $this->sIndentation;
@@ -549,6 +612,9 @@ public function setIndentation(string $sIndentation): self
549612
return $this;
550613
}
551614

615+
/**
616+
* @internal
617+
*/
552618
public function getIgnoreExceptions(): bool
553619
{
554620
return $this->bIgnoreExceptions;
@@ -564,6 +630,9 @@ public function setIgnoreExceptions(bool $bIgnoreExceptions): self
564630
return $this;
565631
}
566632

633+
/**
634+
* @internal
635+
*/
567636
public function getRenderComments(): bool
568637
{
569638
return $this->bRenderComments;
@@ -579,6 +648,9 @@ public function setRenderComments(bool $bRenderComments): self
579648
return $this;
580649
}
581650

651+
/**
652+
* @internal
653+
*/
582654
public function getIndentationLevel(): int
583655
{
584656
return $this->iIndentationLevel;

0 commit comments

Comments
 (0)