Skip to content
This repository was archived by the owner on Nov 1, 2025. It is now read-only.

Commit 0c8299c

Browse files
committed
WIP
1 parent e9645b0 commit 0c8299c

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.gitignore

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
.idea
2-
.php_cs
3-
.php_cs.cache
4-
.php-cs-fixer.cache
52
.phpunit.result.cache
6-
.DS_STORE
7-
build
3+
.phpunit.cache
84
composer.lock
95
coverage
10-
docs
116
phpunit.xml
12-
psalm.xml
7+
phpstan.neon
138
testbench.yaml
149
vendor
1510
node_modules
16-
phpstan.neon
11+
.phpactor.json
12+
build

phpstan.neon.dist

Lines changed: 2 additions & 3 deletions
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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
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="FLATFOX_TOKEN" value="token"/>
2425
</php>
25-
</phpunit>
26+
<source>
27+
<include>
28+
<directory suffix=".php">./src</directory>
29+
</include>
30+
</source>
31+
</phpunit>

src/Flatfox.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Flatfox
88
{
9-
public function getPublicListing(string $identifier, string $expand): GetPublicListing
9+
public function getPublicListing(string $identifier, array $expand): GetPublicListing
1010
{
1111
return new GetPublicListing($identifier, $expand);
1212
}

0 commit comments

Comments
 (0)