MIF_E31222691/laravel/session/transporters/transporter.php

22 lines
384 B
PHP

<?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);
}