IMHO, it is preferable to omit a useless
else.
I've never seen anyone recommend including useless elses
unless the code was under development and you were goning
to put something in the else at a later date.
if($x==$y){
print "good return\n";
}else{
# put in error handling code here
}