12345678910111213141516171819202122 |
- <?php namespace Laravel\Session\Transporters;
- interface Transporter {
- /**
- * Get the session identifier for the request.
- *
- * @param array $config
- * @return string
- */
- public function get($config);
- /**
- * Store the session identifier for the request.
- *
- * @param string $id
- * @param array $config
- * @return void
- */
- public function put($id, $config);
- }
|