Removed pointless try and catch. None of the functions threw an exception and it was just rethrowing. Also Exception didn't exist in that namespace

This commit is contained in:
Iain Cambridge 2014-05-13 14:58:12 +01:00
parent 33f3d27d7b
commit 34d8203262

View File

@ -38,14 +38,11 @@ class Mailgun{
return $this->post("$workingDomain/messages", $postData, $postFiles);
}
else if(is_string($postFiles)){
try{
$tempFile = tempnam(sys_get_temp_dir(), "MG_TMP_MIME");
$fileHandle = fopen($tempFile, "w");
fwrite($fileHandle, $postFiles);
}
catch(Exception $ex){
throw $ex;
}
$tempFile = tempnam(sys_get_temp_dir(), "MG_TMP_MIME");
$fileHandle = fopen($tempFile, "w");
fwrite($fileHandle, $postFiles);
$result = $this->post("$workingDomain/messages.mime", $postData, array("message" => $tempFile));
fclose($fileName);
unlink($fileName);