Skip to content

Commit c6f07db

Browse files
committed
Fix cs
1 parent 1ee517b commit c6f07db

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ indent_style = space
66
end_of_line = lf
77

88
[composer.json]
9-
indent_style = space
109
indent_size = 4

phpunit.xml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="vendor/autoload.php"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
bootstrap="vendor/autoload.php"
34
colors="true"
45
backupGlobals="false"
56
backupStaticAttributes="false"
6-
timeoutForLargeTests="900">
7+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
8+
<coverage processUncoveredFiles="false">
9+
<include>
10+
<directory suffix=".php">src</directory>
11+
</include>
12+
<exclude>
13+
<directory>vendor</directory>
14+
<directory>build</directory>
15+
</exclude>
16+
</coverage>
717
<testsuites>
818
<testsuite name="Tests">
919
<directory suffix="Test.php">tests</directory>
1020
</testsuite>
1121
</testsuites>
12-
<filter>
13-
<whitelist processUncoveredFilesFromWhitelist="false">
14-
<directory suffix=".php">src</directory>
15-
<exclude>
16-
<directory>vendor</directory>
17-
<directory>build</directory>
18-
</exclude>
19-
</whitelist>
20-
</filter>
2122
</phpunit>

0 commit comments

Comments
 (0)