MediaWiki master
PPDPart_Hash.php
Go to the documentation of this file.
1<?php
8namespace MediaWiki\Parser;
9
13// phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
18 public $out;
19
23 public $eqpos;
24
29
33 public $visualEnd;
34
35 public function __construct( string $out = '' ) {
36 $this->out = [];
37
38 if ( $out !== '' ) {
39 $this->out[] = $out;
40 }
41 }
42}
43
45class_alias( PPDPart_Hash::class, 'PPDPart_Hash' );
int null $eqpos
Index of equals sign, if found.
string[] $out
Output accumulator.