* // Get an item from the default session driver * $name = Session::get('name'); * * // Equivalent call using the driver method * $name = Session::driver()->get('name'); * */ public static function __callStatic($method, $parameters) { return call_user_func_array(array(static::driver(), $method), $parameters); } }