X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=includes%2Fparser%2FPPDPart_Hash.php;h=597f851d4a060f67ad2ae0d9f713b28ee05cd402;hb=81aa6d7a758a000dcd110a2d4d21e50aca6d3444;hp=7507f06fe078bc0cb7220dfb54ba04a5e5083553;hpb=9d8759327a0285b7f2e85678e71961bc28a321a2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/parser/PPDPart_Hash.php b/includes/parser/PPDPart_Hash.php index 7507f06fe0..597f851d4a 100644 --- a/includes/parser/PPDPart_Hash.php +++ b/includes/parser/PPDPart_Hash.php @@ -21,16 +21,21 @@ /** * @ingroup Parser + * @property string[] $out */ // phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps class PPDPart_Hash extends PPDPart { + /** + * @param string $out + */ public function __construct( $out = '' ) { if ( $out !== '' ) { $accum = [ $out ]; } else { $accum = []; } + // @phan-suppress-next-line PhanTypeMismatchArgument parent::__construct( $accum ); } }