| 1 | <?php |
||
| 5 | class Attribute |
||
| 6 | { |
||
| 7 | private $key; |
||
| 8 | private $value; |
||
| 9 | private $isStorable; |
||
| 10 | |||
| 11 | public function __construct($key, $value, $isStorable = false) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return mixed |
||
| 20 | */ |
||
| 21 | public function getKey() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | public function getValue() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | public function isIsStorable() |
||
| 41 | } |
||
| 42 |