| 1 | <?php |
||
| 12 | class DatabaseStorage implements StepStorage |
||
| 13 | { |
||
| 14 | protected $step; |
||
| 15 | |||
| 16 | public function __construct() |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function put($key, $value) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function get($key) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * {@inheritdoc} |
||
| 62 | */ |
||
| 63 | public function forget($key) |
||
| 69 | } |
||
| 70 |