| 1 | <?php |
||
| 8 | class FacebookSessionPersistentDataHandler implements PersistentDataInterface |
||
| 9 | { |
||
| 10 | const SESSION_PREFIX = 'FBRLH_'; |
||
| 11 | |||
| 12 | private $session; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param SessionInterface $session |
||
| 16 | */ |
||
| 17 | public function __construct(SessionInterface $session) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritDoc} |
||
| 24 | */ |
||
| 25 | public function get($key) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritDoc} |
||
| 32 | */ |
||
| 33 | public function set($key, $value) |
||
| 37 | } |
||
| 38 |