Created
January 1, 2012 22:52
-
-
Save steveshogren/1548573 to your computer and use it in GitHub Desktop.
ConcreteMock
This file contains 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
<?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