for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AllDigitalRewards\WeGift\Entity;
class Balance extends AbstractEntity
{
protected float $balance;
protected string $currency_code;
/**
* @return float
*/
public function getBalance(): float
return $this->balance;
}
* @param float $balance
public function setBalance(float $balance): void
$this->balance = $balance;
* @return string
public function getCurrencyCode(): string
return $this->currency_code;
* @param string $currency_code
public function setCurrencyCode(string $currency_code): void
$this->currency_code = $currency_code;