Skip to content

Instantly share code, notes, and snippets.

@steveshogren
Created January 1, 2012 22:52
Show Gist options
  • Save steveshogren/1548573 to your computer and use it in GitHub Desktop.
Save steveshogren/1548573 to your computer and use it in GitHub Desktop.
ConcreteMock
<?php
class Velocity {
public function __construct (PayoffCalc $PayoffCalc)
{
$this->_PayoffCalc = $PayoffCalc;
}
public function toFloat()
{
$paymentPerDay = $this->_PayoffCalc->getPaymentPerDay();
return $this->_calculate($paymentPerDay);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment