MediaWiki  master
PPDPart_Hash.php
Go to the documentation of this file.
1 <?php
25 // phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
26 class PPDPart_Hash {
30  public $out;
31 
35  public $eqpos;
36 
40  public $commentEnd;
41 
45  public $visualEnd;
46 
47  public function __construct( $out = '' ) {
48  $this->out = [];
49 
50  if ( $out !== '' ) {
51  $this->out[] = $out;
52  }
53  }
54 }
__construct( $out='')
int null $visualEnd
int null $commentEnd
string[] $out
Output accumulator.
int null $eqpos
Index of equals sign, if found.