Now Playing Tracks

The Coffee App

$pot = new coffee_pot;
$cup = new coffee_cup;
if (($this->hour >= "08:00") AND ($this->hour <= "16:00"))  {
    if (empty($cup->contents())) {
		if (empty($pot->coffee_port)) {
			$pot->insert_pot();
		}
		if ($pot->brewing == FALSE) { 
			$pot->insert_fixings($coffee_flavour);
			$pot->brew_coffee($you); 
		}
		else {
			while ($pot->brewing == TRUE) {
				sleep(10);
 			}
		}
 		$cup->fill($this);
	}
}

To Tumblr, Love Pixel Union