Files
ponzi/laravel/session/transporters/transporter.php
2011-09-15 22:21:29 -05:00

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