Skip to content

Commit

Permalink
Replaced all occurrences of 'setWSDL' with 'setWsdl'.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmaron committed Jun 14, 2011
1 parent 4ca4f42 commit 74e9b91
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

$mailMerge = new MailMerge();

$mailMerge->setWSDL(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_WSDL)
$mailMerge->setWsdl(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_WSDL)
->setUsername(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_USERNAME)
->setPassword(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_PASSWORD);

Expand All @@ -27,7 +27,7 @@
PHP_EOL,
$mailMerge->getPassword(),
PHP_EOL,
$mailMerge->getWSDL(),
$mailMerge->getWsdl(),
PHP_EOL,
PHP_EOL
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
PHP_EOL,
$mailMerge->getPassword(),
PHP_EOL,
$mailMerge->getWSDL(),
$mailMerge->getWsdl(),
PHP_EOL,
PHP_EOL
);
Expand Down
4 changes: 2 additions & 2 deletions demos/Zend/Service/LiveDocx/MailMerge/constructors/public.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
PHP_EOL,
$mailMerge->getPassword(),
PHP_EOL,
$mailMerge->getWSDL(),
$mailMerge->getWsdl(),
PHP_EOL,
PHP_EOL
);
Expand All @@ -51,7 +51,7 @@
PHP_EOL,
$mailMerge->getPassword(),
PHP_EOL,
$mailMerge->getWSDL(),
$mailMerge->getWsdl(),
PHP_EOL,
PHP_EOL
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
$mailMerge = new MailMerge();

// Set WSDL of your *premium* service server
$mailMerge->setWSDL(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_WSDL);
$mailMerge->setWsdl(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_WSDL);

// Set username and password of your *premium* service server
$mailMerge->setUsername(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_USERNAME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
$mailMerge = new MailMerge();

// Set WSDL of your *premium* service server
$mailMerge->setWSDL(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_WSDL);
$mailMerge->setWsdl(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_WSDL);

// Set username and password of your *premium* service server
$mailMerge->setUsername(DEMOS_ZEND_SERVICE_LIVEDOCX_PREMIUM_USERNAME)
Expand Down

0 comments on commit 74e9b91

Please sign in to comment.