File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
tests/Integration/KeyValue Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 225225 "scripts" : {
226226 "phpunit" : " @php -d memory_limit=2G vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices" ,
227227 "coverage" : " vendor/bin/phpunit --coverage-html build/reports/html --coverage-clover build/reports/clover.xml" ,
228- "mago: fmt" : " vendor/bin/mago fmt && vendor/bin/mago lint --fix --potentially-unsafe --fmt" ,
229- "mago: lint" : " vendor/bin/mago lint --minimum-level=note" ,
228+ "fmt" : " vendor/bin/mago fmt && vendor/bin/mago lint --fix --potentially-unsafe --fmt" ,
229+ "lint" : " vendor/bin/mago lint --minimum-level=note" ,
230230 "phpstan" : " vendor/bin/phpstan analyse src tests --memory-limit=1G" ,
231231 "rector" : " vendor/bin/rector process --no-ansi" ,
232232 "merge" : " php -d\" error_reporting = E_ALL & ~E_DEPRECATED\" vendor/bin/monorepo-builder merge" ,
236236 " ./bin/release"
237237 ],
238238 "qa" : [
239- " composer mago: fmt" ,
239+ " composer fmt" ,
240240 " composer merge" ,
241241 " ./bin/validate-packages" ,
242242 " ./tempest discovery:clear --no-interaction" ,
243243 " composer rector" ,
244244 " composer phpunit" ,
245- " composer mago: lint" ,
245+ " composer lint" ,
246246 " composer phpstan"
247247 ]
248248 }
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ protected function cleanup(): void
3939 {
4040 try {
4141 $ this ->redis ->flush ();
42- } catch (Throwable ) {
42+ } catch (Throwable ) { // @mago-expect best-practices/no-empty-catch-clause
4343 }
4444 }
4545
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ protected function cleanup(): void
4545 {
4646 try {
4747 $ this ->redis ->flush ();
48- } catch (Throwable ) {
48+ } catch (Throwable ) { // @mago-expect best-practices/no-empty-catch-clause
4949 }
5050 }
5151
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ protected function cleanup(): void
3939 {
4040 try {
4141 $ this ->redis ->flush ();
42- } catch (Throwable ) {
42+ } catch (Throwable ) { // @mago-expect best-practices/no-empty-catch-clause
4343 }
4444 }
4545
You can’t perform that action at this time.
0 commit comments