Skip to content

Commit b99a407

Browse files
committed
format some files
1 parent bd4e9e5 commit b99a407

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

phpunit.xml.dist

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
convertWarningsToExceptions="true"
1010
stopOnFailure="false"
1111
>
12-
<testsuites>
13-
<testsuite name="Php Library Test Suite">
14-
<directory>test/</directory>
15-
</testsuite>
16-
</testsuites>
12+
<testsuites>
13+
<testsuite name="Php Library Test Suite">
14+
<directory>test/</directory>
15+
</testsuite>
16+
</testsuites>
1717

18-
<filter>
19-
<whitelist>
20-
<directory suffix=".php">src</directory>
21-
</whitelist>
22-
</filter>
18+
<filter>
19+
<whitelist>
20+
<directory suffix=".php">src</directory>
21+
</whitelist>
22+
</filter>
2323
</phpunit>

test/boot.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
if (0 === strpos($class, 'Toolkit\DI\Example\\')) {
1414
$path = str_replace('\\', '/', substr($class, strlen('Toolkit\DI\Example\\')));
1515
$file = dirname(__DIR__) . "/example/{$path}.php";
16-
} elseif (0 === strpos($class,'Toolkit\DITest\\')) {
16+
} elseif (0 === strpos($class, 'Toolkit\DITest\\')) {
1717
$path = str_replace('\\', '/', substr($class, strlen('Toolkit\DITest\\')));
1818
$file = __DIR__ . "/{$path}.php";
19-
} elseif (0 === strpos($class,'Toolkit\DI\\')) {
19+
} elseif (0 === strpos($class, 'Toolkit\DI\\')) {
2020
$path = str_replace('\\', '/', substr($class, strlen('Toolkit\DI\\')));
2121
$file = dirname(__DIR__) . "/src/{$path}.php";
2222
}

0 commit comments

Comments
 (0)