mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-04-04 21:53:31 +03:00
Move fclose and unlink to before the return so they're actually called.
This commit is contained in:
parent
502fac0b37
commit
33f3d27d7b
1 changed files with 3 additions and 3 deletions
|
@ -47,12 +47,12 @@ class Mailgun{
|
|||
throw $ex;
|
||||
}
|
||||
$result = $this->post("$workingDomain/messages.mime", $postData, array("message" => $tempFile));
|
||||
fclose($fileName);
|
||||
unlink($fileName);
|
||||
return $result;
|
||||
fclose($fileName);
|
||||
unlink($fileName);
|
||||
}
|
||||
else{
|
||||
throw new Exceptions\MissingRequiredMIMEParameters(EXCEPTION_MISSING_REQUIRED_MIME_PARAMETERS);
|
||||
throw new Exceptions\git (EXCEPTION_MISSING_REQUIRED_MIME_PARAMETERS);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue