Skip to content

Commit 1164a95

Browse files
committed
Update phpunit.xml
1 parent ecbd0bd commit 1164a95

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

phpunit.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
<?xml version="1.0"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
bootstrap="./tests/config/bootstrap.php"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
5-
cacheDirectory=".phpunit.cache"
6-
>
7-
<coverage>
8-
<include>
9-
<directory suffix=".php">src/</directory>
10-
</include>
11-
</coverage>
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
5+
cacheDirectory=".phpunit.cache">
6+
<coverage/>
127
<php>
138
<ini name="display_errors" value="1"/>
149
<ini name="zend.exception_ignore_args" value="0"/>
@@ -19,4 +14,9 @@
1914
<exclude>tests/config</exclude>
2015
</testsuite>
2116
</testsuites>
17+
<source>
18+
<include>
19+
<directory suffix=".php">src/</directory>
20+
</include>
21+
</source>
2222
</phpunit>

src/Php/Transformer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ public static function transform(string $str, ?string $prefix = null): string
325325
// Klass::$static
326326
// Klass::const
327327
// Kclass::staticMethod()
328-
//
328+
//
329329
case self::ST_STATIC:
330330
if (self::isVarNameChar($c)) {
331331
// noop

0 commit comments

Comments
 (0)