File tree Expand file tree Collapse file tree 4 files changed +28
-1
lines changed
Expand file tree Collapse file tree 4 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -24,5 +24,6 @@ install:
2424- mkdir tmp
2525script :
2626- vendor/bin/phpunit --verbose;
27+ - composer phpstan
2728after_success :
2829- vendor/bin/coveralls -v
Original file line number Diff line number Diff line change 2929 "TheCodingMachine\\ PHPStan\\ " : " tests/"
3030 }
3131 },
32+ "scripts" : {
33+ "phpstan" : " phpstan analyse src -c phpstan.neon --level=4 --no-progress -vvv"
34+ },
3235 "extra" : {
3336 "branch-alias" : {
3437 "dev-master" : " 0.7-dev"
Original file line number Diff line number Diff line change 1+ # parameters:
2+ # ignoreErrors:
3+
4+ services :
5+ -
6+ class : TheCodingMachine\PHPStan\Rules\Exceptions\ThrowMustBundlePreviousExceptionRule
7+ tags :
8+ - phpstan.rules.rule
9+ -
10+ class : TheCodingMachine\PHPStan\Rules\Exceptions\DoNotThrowExceptionBaseClassRule
11+ tags :
12+ - phpstan.rules.rule
13+ -
14+ class : TheCodingMachine\PHPStan\Rules\Exceptions\EmptyExceptionRule
15+ tags :
16+ - phpstan.rules.rule
17+ -
18+ class : TheCodingMachine\PHPStan\Rules\TypeHints\MissingTypeHintInFunctionRule
19+ tags :
20+ - phpstan.rules.rule
21+ -
22+ class : TheCodingMachine\PHPStan\Rules\TypeHints\MissingTypeHintInMethodRule
23+ tags :
24+ - phpstan.rules.rule
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ abstract class AbstractMissingTypeHintRule implements Rule
3535
3636 public function __construct (Broker $ broker )
3737 {
38-
3938 $ this ->broker = $ broker ;
4039 }
4140
You can’t perform that action at this time.
0 commit comments