MediaWiki REL1_34
PPDPart_Hash.php
Go to the documentation of this file.
1<?php
26// phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
27class 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}
__construct( $out='')
string $out
Output accumulator string.
Definition PPDPart.php:33