Not Non-uninvisible, addfunk(), and More
by in Coded Smorgasbord on 2011-07-20"I just inherited a PHP application and discovered this," writes David Green. "I don't know what's worse: the fact that it says add but is performing subtraction, or that I can't find the accompanying addnoise() function."
public function addfunk($one, $two) { $val = $one - $two; return $val; }