File tree 2 files changed +4
-6
lines changed
src/Rules/BooleansInConditions
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 3
3
namespace PHPStan \Rules \BooleansInConditions ;
4
4
5
5
use PhpParser \Node ;
6
- use PhpParser \Node \Stmt \Do_ ;
7
6
use PHPStan \Analyser \Scope ;
8
7
use PHPStan \Rules \Rule ;
9
8
use PHPStan \Rules \RuleErrorBuilder ;
10
9
use PHPStan \Type \VerbosityLevel ;
11
10
use function sprintf ;
12
11
13
12
/**
14
- * @implements Rule<Do_>
13
+ * @implements Rule<Node\Stmt\ Do_>
15
14
*/
16
15
class BooleanInDoWhileConditionRule implements Rule
17
16
{
@@ -25,7 +24,7 @@ public function __construct(BooleanRuleHelper $helper)
25
24
26
25
public function getNodeType (): string
27
26
{
28
- return Do_::class;
27
+ return Node \ Stmt \ Do_::class;
29
28
}
30
29
31
30
public function processNode (Node $ node , Scope $ scope ): array
Original file line number Diff line number Diff line change 3
3
namespace PHPStan \Rules \BooleansInConditions ;
4
4
5
5
use PhpParser \Node ;
6
- use PhpParser \Node \Stmt \While_ ;
7
6
use PHPStan \Analyser \Scope ;
8
7
use PHPStan \Rules \Rule ;
9
8
use PHPStan \Rules \RuleErrorBuilder ;
10
9
use PHPStan \Type \VerbosityLevel ;
11
10
use function sprintf ;
12
11
13
12
/**
14
- * @implements Rule<While_>
13
+ * @implements Rule<Node\Stmt\ While_>
15
14
*/
16
15
class BooleanInWhileConditionRule implements Rule
17
16
{
@@ -25,7 +24,7 @@ public function __construct(BooleanRuleHelper $helper)
25
24
26
25
public function getNodeType (): string
27
26
{
28
- return While_::class;
27
+ return Node \ Stmt \ While_::class;
29
28
}
30
29
31
30
public function processNode (Node $ node , Scope $ scope ): array
You can’t perform that action at this time.
0 commit comments