Skip to content

Commit 73026f2

Browse files
committed
Rescaffold
1 parent afe28ef commit 73026f2

4 files changed

Lines changed: 4 additions & 12 deletions

File tree

.devcontainer.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ fixer-check: var ## Check code style using PHP-CS-Fixer
9090
$(RUN) php-cs-fixer fix --diff --verbose --dry-run $(ARGS)
9191
.PHONY: fixer-check
9292

93-
rector: var ## Fix code style using Rector
93+
rector: var vendor ## Fix code style using Rector
9494
$(RUN) rector process $(ARGS)
9595
.PHONY: rector
9696

97-
rector-check: var ## Check code style using Rector
97+
rector-check: var vendor ## Check code style using Rector
9898
$(RUN) rector process --dry-run $(ARGS)
9999
.PHONY: rector-check
100100

phpstan.dist.neon

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ parameters:
2020

2121
# strict rules
2222
checkBenevolentUnionTypes: true
23-
# checkMissingCallableSignature: true
24-
# checkMissingOverrideMethodAttribute: true
23+
checkMissingCallableSignature: true
2524
checkUninitializedProperties: true
26-
# rememberPossiblyImpureFunctionValues: false
25+
rememberPossiblyImpureFunctionValues: false
2726
reportAlwaysTrueInLastCondition: true
2827
reportAnyTypeWideningInVarTag: true
2928
reportPossiblyNonexistentConstantArrayOffset: true

phpunit.xml.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4-
beStrictAboutCoverageMetadata="true"
54
beStrictAboutOutputDuringTests="true"
65
bootstrap="vendor/autoload.php"
76
cacheDirectory="var/phpunit"
8-
defaultTestSuite="default"
97
displayDetailsOnAllIssues="true"
108
failOnIncomplete="true"
119
failOnNotice="true"

0 commit comments

Comments
 (0)