| 1 | <?php |
||
| 8 | trait StorageTrait |
||
| 9 | { |
||
| 10 | private $storage; |
||
| 11 | private $storageKey; |
||
| 12 | |||
| 13 | protected function setStorageKey($key) |
||
| 17 | |||
| 18 | protected function setStorage(StorageInterface $storage) |
||
| 22 | |||
| 23 | protected function getStorage() : StorageInterface |
||
| 27 | |||
| 28 | protected function load() |
||
| 32 | |||
| 33 | protected function save($data) |
||
| 37 | } |