This repository was archived by the owner on Oct 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +17
-2
lines changed Expand file tree Collapse file tree 5 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 57
57
"require-dev" : {
58
58
"doctrine/doctrine-fixtures-bundle" : " ^3.4" ,
59
59
"friendsofphp/php-cs-fixer" : " ^3.6" ,
60
+ "phpstan/extension-installer" : " ^1.1" ,
60
61
"phpstan/phpstan" : " ^1" ,
62
+ "phpstan/phpstan-doctrine" : " ^1.2" ,
63
+ "phpstan/phpstan-symfony" : " ^1.1" ,
61
64
"rector/rector" : " ^0.12.13" ,
62
65
"roave/security-advisories" : " dev-latest" ,
63
66
"squizlabs/php_codesniffer" : " ^3.6" ,
Original file line number Diff line number Diff line change 1
1
parameters :
2
- level : 3
2
+ level : 5
3
3
paths :
4
4
- src
5
5
excludePaths :
6
6
- src/DependencyInjection/Configuration.php
7
+ ignoreErrors :
8
+ - ' #is never written , only read #'
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ public function configureFields(string $pageName): array
64
64
ProcessExecution::STATUS_FAIL => '<button class="btn btn-danger btn-lm">failed</button> ' ,
65
65
ProcessExecution::STATUS_START => '<button class="btn btn-warning btn-lm">started</button> ' ,
66
66
ProcessExecution::STATUS_SUCCESS => '<button class="btn btn-success btn-lm">success</button> ' ,
67
- null => ''
67
+ default => '<button class="btn btn-info btn-lm">unknown</button> ' ,
68
68
};
69
69
}),
70
70
];
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ public function configureFields(string $pageName): array
80
80
ProcessExecution::STATUS_FAIL => '<button class="btn btn-danger btn-lm">failed</button> ' ,
81
81
ProcessExecution::STATUS_START => '<button class="btn btn-warning btn-lm">started</button> ' ,
82
82
ProcessExecution::STATUS_SUCCESS => '<button class="btn btn-success btn-lm">succcess</button> ' ,
83
+ default => '<button class="btn btn-info btn-lm">unknown</button> ' ,
83
84
};
84
85
}),
85
86
];
Original file line number Diff line number Diff line change 139
139
"php-cs-fixer/diff": {
140
140
"version": "v2.0.2"
141
141
},
142
+ "phpstan/extension-installer": {
143
+ "version": "1.1.0"
144
+ },
142
145
"phpstan/phpstan": {
143
146
"version": "0.12.89"
144
147
},
148
+ "phpstan/phpstan-doctrine": {
149
+ "version": "1.2.10"
150
+ },
151
+ "phpstan/phpstan-symfony": {
152
+ "version": "1.1.5"
153
+ },
145
154
"psr/cache": {
146
155
"version": "1.0.1"
147
156
},
You can’t perform that action at this time.
0 commit comments