Skip to content

Commit

Permalink
Merge pull request #3 from BoulangerV/FIX_avoid_a_PHP_warning
Browse files Browse the repository at this point in the history
Update a switch 'continue' usage to avoid a PHP warning
  • Loading branch information
eiriarte-mendez authored Dec 17, 2019
2 parents 3e0fbaf + f95c3e9 commit ca127fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RequestBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ private function clearAttributes()
case "connectionRetries":
case "retryDelay":
case "gatewayUrl":
continue;
continue 2;
break;
default:
$this->$attribute = null;
Expand Down

0 comments on commit ca127fa

Please sign in to comment.