Encapsulation (computer programming): Difference between revisions

Content deleted Content added
Added period to final sentence
Sameg14 (talk | contribs)
No edit summary
Line 65:
/**
* How much money is currently in the account
*
* @var float
*/
Line 80 ⟶ 79:
/**
* Add money to account
*
* @param float $money Dollars to add to balance
*
* @return void
*/
Line 92 ⟶ 89:
/**
* Remove money from account
*
* @param float $money Dollars to subtract from balance
*
* @throws Exception
* @return void
Line 108 ⟶ 103:
/**
* Get current account balance, that takes all additions and subtractions into consideration.
*
* @return float
*/