| 1 | <?php |
||
| 11 | trait LocalBusinessTrait |
||
| 12 | { |
||
| 13 | private $_currenciesAccpeted; |
||
| 14 | /** |
||
| 15 | * Set accepted currencies |
||
| 16 | * |
||
| 17 | * @param CurrencyValue $currency |
||
| 18 | * @return static |
||
| 19 | */ |
||
| 20 | public function setCurrenciesAccepted(CurrencyValue $currency) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get accepted currencies |
||
| 29 | * |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function getCurrenciesAccepted() |
||
| 36 | |||
| 37 | private $_openingHours; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Set Opening Hours |
||
| 41 | * |
||
| 42 | * @param OpeningHoursValue $openingHours |
||
| 43 | * @return static |
||
| 44 | */ |
||
| 45 | public function setOpeningHours(OpeningHoursValue $openingHours) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Get opening hours |
||
| 54 | * |
||
| 55 | * @return string |
||
| 56 | */ |
||
| 57 | public function getOpeningHours() |
||
| 61 | |||
| 62 | private $_paymentAccepted; |
||
| 63 | |||
| 64 | /** |
||
| 65 | * Set Payment Accepted |
||
| 66 | * |
||
| 67 | * @param string $payment |
||
| 68 | * @return static |
||
| 69 | */ |
||
| 70 | public function setPaymentAccepted($payment) |
||
| 76 | |||
| 77 | /** |
||
| 78 | * Get payment Accepted |
||
| 79 | * |
||
| 80 | * @return string |
||
| 81 | */ |
||
| 82 | public function getPaymentAccepted() |
||
| 86 | |||
| 87 | private $_priceRange; |
||
| 88 | |||
| 89 | /** |
||
| 90 | * Set Price range |
||
| 91 | * |
||
| 92 | * @param string $priceRange |
||
| 93 | * @return static |
||
| 94 | */ |
||
| 95 | public function setPriceRange($priceRange) |
||
| 101 | |||
| 102 | /** |
||
| 103 | * Get price range |
||
| 104 | * |
||
| 105 | * @return string |
||
| 106 | */ |
||
| 107 | public function getPriceRange() |
||
| 111 | } |