class BankAccount in Zircon Profile 8.0
Same name in this branch
Same name and namespace in other branches
A bank account.
@since Class available since Release 2.3.0
Hierarchy
- class \BankAccount
Expanded class hierarchy of BankAccount
2 string references to 'BankAccount'
- PHP_CodeCoverage_Report_CloverTest::testCloverForBankAccountTest in vendor/
phpunit/ php-code-coverage/ tests/ PHP/ CodeCoverage/ Report/ CloverTest.php - @covers PHP_CodeCoverage_Report_Clover
- PHP_CodeCoverage_Report_FactoryTest::testSomething in vendor/
phpunit/ php-code-coverage/ tests/ PHP/ CodeCoverage/ Report/ FactoryTest.php
File
- vendor/
phpunit/ phpunit/ tests/ _files/ BankAccount.php, line 20
View source
class BankAccount {
/**
* The bank account's balance.
*
* @var float
*/
protected $balance = 0;
/**
* Returns the bank account's balance.
*
* @return float
*/
public function getBalance() {
return $this->balance;
}
/**
* Sets the bank account's balance.
*
* @param float $balance
* @throws BankAccountException
*/
protected function setBalance($balance) {
if ($balance >= 0) {
$this->balance = $balance;
}
else {
throw new BankAccountException();
}
}
/**
* Deposits an amount of money to the bank account.
*
* @param float $balance
* @throws BankAccountException
*/
public function depositMoney($balance) {
$this
->setBalance($this
->getBalance() + $balance);
return $this
->getBalance();
}
/**
* Withdraws an amount of money from the bank account.
*
* @param float $balance
* @throws BankAccountException
*/
public function withdrawMoney($balance) {
$this
->setBalance($this
->getBalance() - $balance);
return $this
->getBalance();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BankAccount:: |
protected | property | The bank account's balance. | |
BankAccount:: |
public | function | Deposits an amount of money to the bank account. | |
BankAccount:: |
public | function | Returns the bank account's balance. | |
BankAccount:: |
protected | function | Sets the bank account's balance. | |
BankAccount:: |
public | function | Withdraws an amount of money from the bank account. |