MediaWiki  1.34.0
PPDPart.php
Go to the documentation of this file.
1 <?php
29 class PPDPart {
33  public $out;
34 
35  // Optional member variables:
36  // eqpos Position of equals sign in output accumulator
37  // commentEnd Past-the-end input pointer for the last comment encountered
38  // visualEnd Past-the-end input pointer for the end of the accumulator minus comments
39 
43  public function __construct( $out = '' ) {
44  $this->out = $out;
45  }
46 }
PPDPart
Definition: PPDPart.php:29
PPDPart\$out
string $out
Output accumulator string.
Definition: PPDPart.php:33
PPDPart\__construct
__construct( $out='')
Definition: PPDPart.php:43