| 1 | <?php |
||
| 14 | class Account extends InstanceResource |
||
| 15 | { |
||
| 16 | /** {@inheritdoc} */ |
||
| 17 | protected function getEndpoint() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return int |
||
| 24 | */ |
||
| 25 | protected function getId() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param Currency $currency |
||
| 32 | * |
||
| 33 | * @return $this |
||
| 34 | */ |
||
| 35 | public function setCurrency(Currency $currency) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return Currency |
||
| 45 | */ |
||
| 46 | protected function getCurrency() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | protected function getName() |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return string |
||
| 61 | */ |
||
| 62 | protected function getTimezone() |
||
| 66 | |||
| 67 | /** {@inheritdoc} */ |
||
| 68 | public function save(array $fieldNames = []) |
||
| 78 | |||
| 79 | /** {@inheritdoc} */ |
||
| 80 | protected function postHydrate(array $data) |
||
| 84 | } |
||
| 85 |