1 | <?php |
||
12 | class ToJsonFilePersistence implements SagaPersistence |
||
13 | { |
||
14 | /** |
||
15 | * @var FileSystemInterface |
||
16 | */ |
||
17 | private $fileSystem; |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $directory; |
||
22 | |||
23 | 1 | public function __construct( |
|
31 | |||
32 | 1 | public function loadData(string $sagaId) |
|
42 | |||
43 | 1 | public function saveData(string $sagaId, $data) |
|
47 | |||
48 | 1 | private function getFilePath(string $sagaId): string |
|
52 | } |