Created
February 13, 2009 07:55
-
-
Save juno/63781 to your computer and use it in GitHub Desktop.
Refactoring: Decompose Conditional (before)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ($date->before(SUMMER_START) || $date->after(SUMMER_END)) { | |
$charge = $quantity * $this->winter_rate + $this->winter_service_charge; | |
} else { | |
$charge = $quantity * $this->summer_rate; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment