| Total Complexity | 4 | 
| Total Lines | 39 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php | ||
| 8 | class Store implements Storable | ||
| 9 | { | ||
| 10 | |||
| 11 | /** | ||
| 12 | * @var array | ||
| 13 | */ | ||
| 14 | protected $balanceSheets = []; | ||
| 15 | |||
| 16 | /** | ||
| 17 | * @inheritDoc | ||
| 18 | */ | ||
| 19 | 90 | public function getBalance($object): int | |
| 27 | } | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @inheritDoc | ||
| 31 | */ | ||
| 32 | 74 | public function incBalance($object, int $amount): int | |
| 37 | } | ||
| 38 | |||
| 39 | /** | ||
| 40 | * @inheritDoc | ||
| 41 | */ | ||
| 42 | 74 | public function setBalance($object, int $amount): bool | |
| 50 |