3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
22 namespace MediaWiki\Parser
;
24 use InvalidArgumentException
;
31 // phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
32 class PPNode_Hash_Text
implements Stringable
, PPNode
{
42 * Construct an object using the data from $store[$index]. The rest of the
43 * store array can be accessed via getNextSibling().
48 public function __construct( array $store, $index ) {
49 if ( !is_scalar( $store[$index] ) ) {
50 throw new InvalidArgumentException( __CLASS__
. ' given object instead of string' );
52 $this->value
= $store[$index];
53 $this->store
= $store;
54 $this->index
= $index;
57 public function __toString() {
58 return htmlspecialchars( $this->value
, ENT_COMPAT
);
61 public function getNextSibling() {
62 return PPNode_Hash_Tree
::factory( $this->store
, $this->index +
1 );
65 public function getChildren() {
69 public function getFirstChild() {
73 public function getChildrenOfType( $name ) {
77 public function getLength() {
81 public function item( $i ) {
85 public function getName() {
89 public function splitArg() {
90 // @phan-suppress-previous-line PhanPluginNeverReturnMethod
91 throw new LogicException( __METHOD__
. ': not supported' );
94 public function splitExt() {
95 // @phan-suppress-previous-line PhanPluginNeverReturnMethod
96 throw new LogicException( __METHOD__
. ': not supported' );
99 public function splitHeading() {
100 // @phan-suppress-previous-line PhanPluginNeverReturnMethod
101 throw new LogicException( __METHOD__
. ': not supported' );
105 /** @deprecated class alias since 1.43 */
106 class_alias( PPNode_Hash_Text
::class, 'PPNode_Hash_Text' );