KeyValuePair.php
4 years ago
ListScreenOrder.php
4 years ago
Option.php
4 years ago
OptionFactory.php
4 years ago
SiteOption.php
4 years ago
Timestamp.php
4 years ago
Transaction.php
4 years ago
UserMeta.php
4 years ago
KeyValuePair.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Storage; |
| 4 | |
| 5 | interface KeyValuePair { |
| 6 | |
| 7 | /** |
| 8 | * @param array $args |
| 9 | * |
| 10 | * @return mixed |
| 11 | */ |
| 12 | public function get( array $args = [] ); |
| 13 | |
| 14 | /** |
| 15 | * @param mixed $value |
| 16 | * |
| 17 | * @return bool |
| 18 | */ |
| 19 | public function save( $value ); |
| 20 | |
| 21 | /** |
| 22 | * @return bool |
| 23 | */ |
| 24 | public function delete(); |
| 25 | |
| 26 | } |