core/lib/Drupal/Core/Cache/CacheableResponseTrait.php | 2 +- core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php | 2 +- .../{Cache => Http}/Exception/CacheableAccessDeniedHttpException.php | 2 +- .../Core/{Cache => Http}/Exception/CacheableBadRequestHttpException.php | 2 +- .../Core/{Cache => Http}/Exception/CacheableConflictHttpException.php | 2 +- .../Core/{Cache => Http}/Exception/CacheableGoneHttpException.php | 2 +- .../Drupal/Core/{Cache => Http}/Exception/CacheableHttpException.php | 0 .../Core/{Cache => Http}/Exception/CacheableHttpExceptionInterface.php | 2 +- .../{Cache => Http}/Exception/CacheableLengthRequiredHttpException.php | 2 +- .../Exception/CacheableMethodNotAllowedHttpException.php | 2 +- .../{Cache => Http}/Exception/CacheableNotAcceptableHttpException.php | 2 +- .../Core/{Cache => Http}/Exception/CacheableNotFoundHttpException.php | 2 +- .../Exception/CacheablePreconditionFailedHttpException.php | 2 +- .../Exception/CacheablePreconditionRequiredHttpException.php | 2 +- .../Exception/CacheableServiceUnavailableHttpException.php | 2 +- .../{Cache => Http}/Exception/CacheableTooManyRequestsHttpException.php | 2 +- .../{Cache => Http}/Exception/CacheableUnauthorizedHttpException.php | 2 +- .../Exception/CacheableUnprocessableEntityHttpException.php | 2 +- .../Exception/CacheableUnsupportedMediaTypeHttpException.php | 2 +- core/modules/basic_auth/src/Authentication/Provider/BasicAuth.php | 2 +- core/modules/rest/src/Plugin/rest/resource/EntityResource.php | 2 +- .../serialization/src/EventSubscriber/DefaultExceptionSubscriber.php | 2 +- 22 files changed, 21 insertions(+), 21 deletions(-) diff --git a/core/lib/Drupal/Core/Cache/CacheableResponseTrait.php b/core/lib/Drupal/Core/Cache/CacheableResponseTrait.php index a6da869..ab020c4 100644 --- a/core/lib/Drupal/Core/Cache/CacheableResponseTrait.php +++ b/core/lib/Drupal/Core/Cache/CacheableResponseTrait.php @@ -6,7 +6,7 @@ * Provides an implementation for cacheable responses/HTTP exceptions. * * @see \Drupal\Core\Cache\CacheableResponseInterface - * @see \Drupal\Core\Cache\Exception\CacheableHttpExceptionInterface + * @see \Drupal\Core\Http\Exception\CacheableHttpExceptionInterface */ trait CacheableResponseTrait { diff --git a/core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php index 1c43f3b..411b53f 100644 --- a/core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php +++ b/core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php @@ -3,7 +3,7 @@ namespace Drupal\Core\EventSubscriber; use Drupal\Core\Cache\CacheableJsonResponse; -use Drupal\Core\Cache\Exception\CacheableHttpExceptionInterface; +use Drupal\Core\Http\Exception\CacheableHttpExceptionInterface; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; diff --git a/core/lib/Drupal/Core/Cache/Exception/CacheableAccessDeniedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php similarity index 89% rename from core/lib/Drupal/Core/Cache/Exception/CacheableAccessDeniedHttpException.php rename to core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php index 6e38512..269e473 100644 --- a/core/lib/Drupal/Core/Cache/Exception/CacheableAccessDeniedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php @@ -1,6 +1,6 @@