4
4
5
5
use PHPStan \PhpDocParser \Ast \NodeAttributes ;
6
6
use PHPStan \PhpDocParser \Parser \ParserException ;
7
+ use function sprintf ;
8
+ use function trigger_error ;
9
+ use const E_USER_WARNING ;
7
10
11
+ /**
12
+ * @property ParserException $exception
13
+ */
8
14
class InvalidTagValueNode implements PhpDocTagValueNode
9
15
{
10
16
@@ -13,15 +19,30 @@ class InvalidTagValueNode implements PhpDocTagValueNode
13
19
/** @var string (may be empty) */
14
20
public $ value ;
15
21
16
- /** @var ParserException */
17
- public $ exception ;
22
+ /** @var mixed[] */
23
+ private $ exceptionArgs ;
18
24
19
25
public function __construct (string $ value , ParserException $ exception )
20
26
{
21
27
$ this ->value = $ value ;
22
- $ this ->exception = $ exception ;
28
+ $ this ->exceptionArgs = [
29
+ $ exception ->getCurrentTokenValue (),
30
+ $ exception ->getCurrentTokenType (),
31
+ $ exception ->getCurrentOffset (),
32
+ $ exception ->getExpectedTokenType (),
33
+ $ exception ->getExpectedTokenValue (),
34
+ ];
23
35
}
24
36
37
+ public function __get (string $ name )
38
+ {
39
+ if ($ name !== 'exception ' ) {
40
+ trigger_error (sprintf ('Undefined property: %s::$%s ' , self ::class, $ name ), E_USER_WARNING );
41
+ return null ;
42
+ }
43
+
44
+ return new ParserException (...$ this ->exceptionArgs );
45
+ }
25
46
26
47
public function __toString (): string
27
48
{
0 commit comments