Skip to content

Commit

Permalink
Fix property spelling issue. Fixes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
mbonneau committed May 21, 2016
1 parent d4dc948 commit 22591e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WampPost/WampPost.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private function handleCallHttpRequest($request, $response) {
) {
$args = isset($json->args) && is_array($json->args) ? $json->args : null;
$argsKw = isset($json->argsKw) && is_object($json->argsKw) ? $json->argsKw : null;
$options = isset($json->options) && is_object($json->opitons) ? $json->options : null;
$options = isset($json->options) && is_object($json->options) ? $json->options : null;

$this->getSession()->call($json->procedure, $args, $argsKw, $options)->then(
/** @param CallResult $result */
Expand Down

0 comments on commit 22591e1

Please sign in to comment.