Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
37.50% covered (danger)
37.50%
6 / 16
16.67% covered (danger)
16.67%
2 / 12
CRAP
0.00% covered (danger)
0.00%
0 / 1
PPNode_Hash_Text
37.50% covered (danger)
37.50%
6 / 16
16.67% covered (danger)
16.67%
2 / 12
54.26
0.00% covered (danger)
0.00%
0 / 1
 __construct
80.00% covered (warning)
80.00%
4 / 5
0.00% covered (danger)
0.00%
0 / 1
2.03
 __toString
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getNextSibling
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getChildren
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getFirstChild
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getChildrenOfType
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getLength
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 item
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getName
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 splitArg
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 splitExt
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 splitHeading
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
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.
7 *
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.
12 *
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
17 *
18 * @file
19 * @ingroup Parser
20 */
21
22/**
23 * @ingroup Parser
24 */
25// phpcs:ignore Squiz.Classes.ValidClassName.NotCamelCaps
26class PPNode_Hash_Text implements PPNode {
27
28    /** @var string */
29    public $value;
30    /** @var array */
31    private $store;
32    /** @var int */
33    private $index;
34
35    /**
36     * Construct an object using the data from $store[$index]. The rest of the
37     * store array can be accessed via getNextSibling().
38     *
39     * @param array $store
40     * @param int $index
41     */
42    public function __construct( array $store, $index ) {
43        if ( !is_scalar( $store[$index] ) ) {
44            throw new InvalidArgumentException( __CLASS__ . ' given object instead of string' );
45        }
46        $this->value = $store[$index];
47        $this->store = $store;
48        $this->index = $index;
49    }
50
51    public function __toString() {
52        return htmlspecialchars( $this->value, ENT_COMPAT );
53    }
54
55    public function getNextSibling() {
56        return PPNode_Hash_Tree::factory( $this->store, $this->index + 1 );
57    }
58
59    public function getChildren() {
60        return false;
61    }
62
63    public function getFirstChild() {
64        return false;
65    }
66
67    public function getChildrenOfType( $name ) {
68        return false;
69    }
70
71    public function getLength() {
72        return false;
73    }
74
75    public function item( $i ) {
76        return false;
77    }
78
79    public function getName() {
80        return '#text';
81    }
82
83    public function splitArg() {
84        // @phan-suppress-previous-line PhanPluginNeverReturnMethod
85        throw new LogicException( __METHOD__ . ': not supported' );
86    }
87
88    public function splitExt() {
89        // @phan-suppress-previous-line PhanPluginNeverReturnMethod
90        throw new LogicException( __METHOD__ . ': not supported' );
91    }
92
93    public function splitHeading() {
94        // @phan-suppress-previous-line PhanPluginNeverReturnMethod
95        throw new LogicException( __METHOD__ . ': not supported' );
96    }
97}