MediaWiki  1.34.0
PPDPart_Hash.php
Go to the documentation of this file.
1 <?php
26 // phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
27 class PPDPart_Hash extends PPDPart {
28 
32  public function __construct( $out = '' ) {
33  if ( $out !== '' ) {
34  $accum = [ $out ];
35  } else {
36  $accum = [];
37  }
38  // @phan-suppress-next-line PhanTypeMismatchArgument
39  parent::__construct( $accum );
40  }
41 }
PPDPart
Definition: PPDPart.php:29
PPDPart\$out
string $out
Output accumulator string.
Definition: PPDPart.php:33
PPDPart_Hash
Definition: PPDPart_Hash.php:27
PPDPart_Hash\__construct
__construct( $out='')
Definition: PPDPart_Hash.php:32