File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ public function getStyle(): OutputStyle;
16
16
17
17
public function isVerbose (): bool ;
18
18
19
+ public function isVeryVerbose (): bool ;
20
+
19
21
public function isDebug (): bool ;
20
22
23
+ public function isDecorated (): bool ;
24
+
21
25
}
Original file line number Diff line number Diff line change @@ -44,9 +44,19 @@ public function isVerbose(): bool
44
44
return $ this ->symfonyOutput ->isVerbose ();
45
45
}
46
46
47
+ public function isVeryVerbose (): bool
48
+ {
49
+ return $ this ->symfonyOutput ->isVeryVerbose ();
50
+ }
51
+
47
52
public function isDebug (): bool
48
53
{
49
54
return $ this ->symfonyOutput ->isDebug ();
50
55
}
51
56
57
+ public function isDecorated (): bool
58
+ {
59
+ return $ this ->symfonyOutput ->isDecorated ();
60
+ }
61
+
52
62
}
Original file line number Diff line number Diff line change 3
3
namespace PHPStan \Rules \Api ;
4
4
5
5
use PHPStan \Analyser \Scope ;
6
+ use PHPStan \Command \Output ;
6
7
use PHPStan \Reflection \Callables \CallableParametersAcceptor ;
7
8
use PHPStan \Reflection \ExtendedMethodReflection ;
8
9
use PHPStan \Reflection \ExtendedPropertyReflection ;
@@ -39,6 +40,7 @@ final class BcUncoveredInterface
39
40
NonIgnorableRuleError::class,
40
41
RuleError::class,
41
42
TipRuleError::class,
43
+ Output::class,
42
44
];
43
45
44
46
}
You can’t perform that action at this time.
0 commit comments