MediaWiki REL1_34
PPDPart.php
Go to the documentation of this file.
1<?php
29class 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}
__construct( $out='')
Definition PPDPart.php:43
string $out
Output accumulator string.
Definition PPDPart.php:33