Skip to content

Commit a8d9ba9

Browse files
committed
Default to empty string
1 parent aaab586 commit a8d9ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WebDAV/ByteMarkWebDAVServerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ByteMarkWebDAVServerTest extends WebDAVAdapterTestCase
1010
{
1111
protected static function createFilesystemAdapter(): FilesystemAdapter
1212
{
13-
if ($_ENV['TEST_WEBDAV'] !== 'YES') {
13+
if (($_ENV['TEST_WEBDAV'] ?? '') !== 'YES') {
1414
self::markTestSkipped('Library regression');
1515
}
1616
$client = new UrlPrefixingClientStub(['baseUri' => 'http://localhost:4080/', 'userName' => 'alice', 'password' => 'secret1234']);

0 commit comments

Comments
 (0)