Skip to content

Commit

Permalink
chore: fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
krzaczek committed Sep 22, 2023
1 parent a465338 commit 9bf79d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ require_once __DIR__ . '/vendor/autoload.php';
/**
* Minimal options
*/
$reflector = new \ReflectionClass(WsdlType::class);
$reflector = new \ReflectionClass(\PocztaPolska\EnumType\WsdlType::class);
$options = [
WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL => realpath(dirname($reflector->getFileName()) . '/' . WsdlType::WSDL_FILE);
WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL => realpath(dirname($reflector->getFileName()) . '/' . \PocztaPolska\EnumType\WsdlType::WSDL_FILE);
WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_CLASSMAP => \PocztaPolska\ClassMap::get(),
WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_LOGIN = "login",
WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_PASSWORD = "secret",
Expand Down

0 comments on commit 9bf79d2

Please sign in to comment.