You are here

LocalRedirectResponse.php in Drupal 9

File

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

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.