Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 71
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
ValidityState
0.00% covered (danger)
0.00%
0 / 71
0.00% covered (danger)
0.00%
0 / 4
1056
0.00% covered (danger)
0.00%
0 / 1
 _getMissingProp
0.00% covered (danger)
0.00%
0 / 12
0.00% covered (danger)
0.00%
0 / 1
12
 _setMissingProp
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 1
12
 __get
0.00% covered (danger)
0.00%
0 / 24
0.00% covered (danger)
0.00%
0 / 1
182
 __isset
0.00% covered (danger)
0.00%
0 / 24
0.00% covered (danger)
0.00%
0 / 1
182
1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM\Helper;
7
8trait ValidityState {
9
10    // Underscore is used to avoid conflicts with DOM-reserved names
11    // phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
12    // phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
13
14    /**
15     * Handle an attempt to get a non-existing property on this
16     * object.  The default implementation raises an exception
17     * but the implementor can choose a different behavior:
18     * return null (like JavaScript), dynamically create the
19     * property, etc.
20     * @param string $prop the name of the property requested
21     * @return mixed
22     */
23    protected function _getMissingProp( string $prop ) {
24        $trace = debug_backtrace();
25        while (
26            count( $trace ) > 0 &&
27            $trace[0]['function'] !== "__get"
28        ) {
29            array_shift( $trace );
30        }
31        trigger_error(
32            'Undefined property' .
33            ' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $prop .
34            ' in ' . ( $trace[0]['file'] ?? '' ) .
35            ' on line ' . ( $trace[0]['line'] ?? '' ),
36            E_USER_NOTICE
37        );
38        return null;
39    }
40
41    /**
42     * Handle an attempt to set a non-existing property on this
43     * object.  The default implementation raises an exception
44     * but the implementor can choose a different behavior:
45     * ignore the operation (like JavaScript), dynamically create
46     * the property, etc.
47     * @param string $prop the name of the property requested
48     * @param mixed $value the value to set
49     */
50    protected function _setMissingProp( string $prop, $value ): void {
51        $trace = debug_backtrace();
52        while (
53            count( $trace ) > 0 &&
54            $trace[0]['function'] !== "__set"
55        ) {
56            array_shift( $trace );
57        }
58        trigger_error(
59            'Undefined property' .
60            ' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $prop .
61            ' in ' . ( $trace[0]['file'] ?? '' ) .
62            ' on line ' . ( $trace[0]['line'] ?? '' ),
63            E_USER_NOTICE
64        );
65    }
66
67    // phpcs:enable
68
69    /**
70     * @param string $name
71     * @return mixed
72     */
73    public function __get( string $name ) {
74        '@phan-var \Wikimedia\IDLeDOM\ValidityState $this';
75        // @var \Wikimedia\IDLeDOM\ValidityState $this
76        switch ( $name ) {
77            case "valueMissing":
78                return $this->getValueMissing();
79            case "typeMismatch":
80                return $this->getTypeMismatch();
81            case "patternMismatch":
82                return $this->getPatternMismatch();
83            case "tooLong":
84                return $this->getTooLong();
85            case "tooShort":
86                return $this->getTooShort();
87            case "rangeUnderflow":
88                return $this->getRangeUnderflow();
89            case "rangeOverflow":
90                return $this->getRangeOverflow();
91            case "stepMismatch":
92                return $this->getStepMismatch();
93            case "badInput":
94                return $this->getBadInput();
95            case "customError":
96                return $this->getCustomError();
97            case "valid":
98                return $this->getValid();
99            default:
100                break;
101        }
102        '@phan-var \Wikimedia\IDLeDOM\Helper\ValidityState $this';
103        // @var \Wikimedia\IDLeDOM\Helper\ValidityState $this
104        return $this->_getMissingProp( $name );
105    }
106
107    /**
108     * @param string $name
109     * @return bool
110     */
111    public function __isset( string $name ): bool {
112        '@phan-var \Wikimedia\IDLeDOM\ValidityState $this';
113        // @var \Wikimedia\IDLeDOM\ValidityState $this
114        switch ( $name ) {
115            case "valueMissing":
116                return true;
117            case "typeMismatch":
118                return true;
119            case "patternMismatch":
120                return true;
121            case "tooLong":
122                return true;
123            case "tooShort":
124                return true;
125            case "rangeUnderflow":
126                return true;
127            case "rangeOverflow":
128                return true;
129            case "stepMismatch":
130                return true;
131            case "badInput":
132                return true;
133            case "customError":
134                return true;
135            case "valid":
136                return true;
137            default:
138                break;
139        }
140        return false;
141    }
142
143}