MediaWiki REL1_34
PPDStack_Hash.php
Go to the documentation of this file.
1<?php
26// phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
27class PPDStack_Hash extends PPDStack {
28
29 public function __construct() {
30 $this->elementClass = PPDStackElement_Hash::class;
31 parent::__construct();
32 $this->rootAccum = [];
33 }
34}
int $count
Number of opening characters found (number of "=" for heading)
Stack class to help Preprocessor::preprocessToObj()
Stack class to help Preprocessor::preprocessToObj()
Definition PPDStack.php:26