diff --git a/src/AutoDiscover.php b/src/AutoDiscover.php index f370426..ede0b14 100644 --- a/src/AutoDiscover.php +++ b/src/AutoDiscover.php @@ -28,7 +28,7 @@ use const ENT_QUOTES; -final class AutoDiscover +class AutoDiscover { /** @var string */ protected $serviceName; diff --git a/test/AutoDiscoverTest.php b/test/AutoDiscoverTest.php index 210f1e2..bb7e641 100644 --- a/test/AutoDiscoverTest.php +++ b/test/AutoDiscoverTest.php @@ -1464,9 +1464,7 @@ public function testHandle() ob_start(); $this->server->handle(); - $actualWsdl = ob_get_clean(); - $this->assertNotEmpty($actualWsdl, "WSDL content was not outputted."); $this->assertStringContainsString($scriptUri, $actualWsdl, "Script URL was not found in WSDL content."); }