Skip to content

Commit

Permalink
FIXED A BUG!
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm authored and DavidGarciaCat committed Aug 8, 2018
1 parent 0145ddd commit 94d0406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mailgun/Model/Domain/UpdateConnectionResponse.php
Expand Up @@ -39,8 +39,8 @@ final class UpdateConnectionResponse implements ApiResponse
public static function create(array $data)
{
$message = isset($data['message']) ? $data['message'] : null;
$noVerify = isset($data['skip_verification']) ? $data['skip_verification'] : null;
$requireTLS = isset($data['require_tls']) ? $data['require_tls'] : null;
$noVerify = isset($data['skip-verification']) ? $data['skip-verification'] : null;
$requireTLS = isset($data['require-tls']) ? $data['require-tls'] : null;

return new self($message, $noVerify, $requireTLS);
}
Expand Down

0 comments on commit 94d0406

Please sign in to comment.