Skip to content

Commit 14f2fb0

Browse files
committed
WIP
1 parent 4384150 commit 14f2fb0

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

.gitignore

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
.idea
2-
.php_cs
3-
.php_cs.cache
4-
.php-cs-fixer.cache
52
.phpunit.result.cache
63
.phpunit.cache
7-
.DS_STORE
8-
build
94
composer.lock
105
coverage
11-
docs
126
phpunit.xml
13-
psalm.xml
7+
phpstan.neon
148
testbench.yaml
159
vendor
1610
node_modules
17-
phpstan.neon
11+
.phpactor.json
12+
build

phpstan.neon.dist

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ includes:
22
- phpstan-baseline.neon
33

44
parameters:
5-
level: 4
5+
level: 5
66
paths:
77
- src
88
- config
99
tmpDir: build/phpstan
1010
checkOctaneCompatibility: true
1111
checkModelProperties: true
12-
checkMissingIterableValueType: false
13-
12+
noEnvCallsOutsideOfConfig: false

phpunit.xml.dist

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<junit outputFile="build/report.junit.xml"/>
2121
</logging>
2222
<php>
23+
<env name="APP_KEY" value="base64:F+mHMDBbavrsp/I3WYA5lDSwDJJI/0wQG4eM3csq/lo="/>
2324
<env name="ZAMMAD_URL" value="https://dev-immospace.zammad.com"/>
2425
<env name="ZAMMAD_TOKEN" value="token"/>
2526
</php>
@@ -28,4 +29,4 @@
2829
<directory suffix=".php">./src</directory>
2930
</include>
3031
</source>
31-
</phpunit>
32+
</phpunit>

0 commit comments

Comments
 (0)