-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy paththrows-inheritance.php
119 lines (86 loc) · 1.75 KB
/
throws-inheritance.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php declare(strict_types = 1);
namespace Pepakriz\PHPStanExceptionRules\Rules\Data\Inheritance;
use LogicException;
use RuntimeException;
class BaseException extends RuntimeException {};
class ConcreteException extends BaseException {};
class SecondConcreteException extends BaseException {};
class BaseThrowsAnnotations
{
/**
* @throws BaseException
*/
public function correct(): void
{
}
/**
* @throws LogicException
*/
public function correctWithLogicException(): void
{
}
/**
* @throws ConcreteException
*/
public function wrong(): void
{
}
public function __construct()
{
}
public function parentWithoutThrows(): void
{
}
/**
* @throws ConcreteException
*/
public function parentWithTrows(): void
{
}
}
class ThrowsAnnotations extends BaseThrowsAnnotations
{
/**
* @throws ConcreteException
*/
public function methodWithoutParent(): void
{
}
/**
* @throws ConcreteException
* @throws SecondConcreteException
*/
public function correct(): void
{
}
/**
* @throws ConcreteException
*/
public function correctWithLogicException(): void
{
}
/**
* @throws BaseException
*/
public function wrong(): void // error: PHPDoc tag @throws with type Pepakriz\PHPStanExceptionRules\Rules\Data\Inheritance\BaseException is not compatible with parent Pepakriz\PHPStanExceptionRules\Rules\Data\Inheritance\ConcreteException
{
}
/**
* @throws BaseException
*/
public function __construct()
{
}
/**
* @throws BaseException
*/
public function parentWithoutThrows(): void // error: PHPDoc tag @throws with type Pepakriz\PHPStanExceptionRules\Rules\Data\Inheritance\BaseException is not compatible with parent
{
}
/**
* @throws void
*/
public function parentWithTrows(): void
{
}
}