Trimming comment bloat in Redirect class.
This commit is contained in:
@@ -60,10 +60,6 @@ class Redirect {
|
|||||||
*/
|
*/
|
||||||
public function with($key, $value)
|
public function with($key, $value)
|
||||||
{
|
{
|
||||||
// ----------------------------------------------------
|
|
||||||
// Since this method uses sessions, make sure a driver
|
|
||||||
// has been specified in the configuration file.
|
|
||||||
// ----------------------------------------------------
|
|
||||||
if (Config::get('session.driver') != '')
|
if (Config::get('session.driver') != '')
|
||||||
{
|
{
|
||||||
Session::flash($key, $value);
|
Session::flash($key, $value);
|
||||||
@@ -79,17 +75,13 @@ class Redirect {
|
|||||||
{
|
{
|
||||||
$parameters = (isset($parameters[0])) ? $parameters[0] : array();
|
$parameters = (isset($parameters[0])) ? $parameters[0] : array();
|
||||||
|
|
||||||
// ----------------------------------------------------
|
|
||||||
// Dynamically redirect to a secure route URL.
|
// Dynamically redirect to a secure route URL.
|
||||||
// ----------------------------------------------------
|
|
||||||
if (strpos($method, 'to_secure_') === 0)
|
if (strpos($method, 'to_secure_') === 0)
|
||||||
{
|
{
|
||||||
return static::to(URL::to_route(substr($method, 10), $parameters, true));
|
return static::to(URL::to_route(substr($method, 10), $parameters, true));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------
|
|
||||||
// Dynamically redirect a route URL.
|
// Dynamically redirect a route URL.
|
||||||
// ----------------------------------------------------
|
|
||||||
if (strpos($method, 'to_') === 0)
|
if (strpos($method, 'to_') === 0)
|
||||||
{
|
{
|
||||||
return static::to(URL::to_route(substr($method, 3), $parameters));
|
return static::to(URL::to_route(substr($method, 3), $parameters));
|
||||||
|
|||||||
Reference in New Issue
Block a user