You are here

LocalRedirectResponse.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/Routing/LocalRedirectResponse.php

File

core/lib/Drupal/Core/Routing/LocalRedirectResponse.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Routing\LocalRedirectResponse.
 */
namespace Drupal\Core\Routing;


/**
 * Provides a redirect response which cannot redirect to an external URL.
 */
class LocalRedirectResponse extends CacheableSecuredRedirectResponse {
  use LocalAwareRedirectResponseTrait {
    LocalAwareRedirectResponseTrait::isLocal as isSafe;
  }

}

Classes

Namesort descending Description
LocalRedirectResponse Provides a redirect response which cannot redirect to an external URL.