MediaWiki master
PPDPart_Hash.php
Go to the documentation of this file.
1<?php
22namespace MediaWiki\Parser;
23
27// phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
32 public $out;
33
37 public $eqpos;
38
43
47 public $visualEnd;
48
49 public function __construct( $out = '' ) {
50 $this->out = [];
51
52 if ( $out !== '' ) {
53 $this->out[] = $out;
54 }
55 }
56}
57
59class_alias( PPDPart_Hash::class, 'PPDPart_Hash' );
int null $eqpos
Index of equals sign, if found.
string[] $out
Output accumulator.