diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php index e0fd5cb..95c5bce 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php @@ -16,7 +16,7 @@ class CacheableAccessDeniedHttpException extends AccessDeniedHttpException imple /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableBadRequestHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableBadRequestHttpException.php index 97d432a..4737c33 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableBadRequestHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableBadRequestHttpException.php @@ -16,7 +16,7 @@ class CacheableBadRequestHttpException extends BadRequestHttpException implement /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableConflictHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableConflictHttpException.php index ca804fb..6646c23 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableConflictHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableConflictHttpException.php @@ -16,7 +16,7 @@ class CacheableConflictHttpException extends ConflictHttpException implements Ca /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php index 4568c91..13a3d0c 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php @@ -16,7 +16,7 @@ class CacheableGoneHttpException extends GoneHttpException implements CacheableD /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php index 76f529e..aadc57e 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php @@ -16,7 +16,7 @@ class CacheableHttpException extends HttpException implements CacheableDependenc /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $statusCode = 0, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $statusCode = 0, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($statusCode, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableLengthRequiredHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableLengthRequiredHttpException.php index a75f80a..c9647aa 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableLengthRequiredHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableLengthRequiredHttpException.php @@ -16,7 +16,7 @@ class CacheableLengthRequiredHttpException extends LengthRequiredHttpException i /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php index d9919b1..5267a15 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php @@ -16,7 +16,7 @@ class CacheableMethodNotAllowedHttpException extends MethodNotAllowedHttpExcepti /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, array $allow, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, array $allow, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($allow, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php index 94bf1c2..85896f0 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php @@ -16,7 +16,7 @@ class CacheableNotAcceptableHttpException extends NotAcceptableHttpException imp /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php index 9e5e136..e3097fe 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php @@ -16,7 +16,7 @@ class CacheableNotFoundHttpException extends NotFoundHttpException implements Ca /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionFailedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionFailedHttpException.php index 7921d3e..427b069 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionFailedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionFailedHttpException.php @@ -16,7 +16,7 @@ class CacheablePreconditionFailedHttpException extends PreconditionFailedHttpExc /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php index d66b255..06fd395 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php @@ -16,7 +16,7 @@ class CacheablePreconditionRequiredHttpException extends PreconditionRequiredHtt /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php index 313b9ae..671a523 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php @@ -16,7 +16,7 @@ class CacheableServiceUnavailableHttpException extends ServiceUnavailableHttpExc /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($retryAfter, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableTooManyRequestsHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableTooManyRequestsHttpException.php index e709c0b..8c60a51 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableTooManyRequestsHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableTooManyRequestsHttpException.php @@ -16,7 +16,7 @@ class CacheableTooManyRequestsHttpException extends TooManyRequestsHttpException /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($retryAfter, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableUnauthorizedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableUnauthorizedHttpException.php index 35dbd72..1931caa 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableUnauthorizedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableUnauthorizedHttpException.php @@ -16,7 +16,7 @@ class CacheableUnauthorizedHttpException extends UnauthorizedHttpException imple /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $challenge, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $challenge, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($challenge, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableUnprocessableEntityHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableUnprocessableEntityHttpException.php index 655c67a..1f64587 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableUnprocessableEntityHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableUnprocessableEntityHttpException.php @@ -16,7 +16,7 @@ class CacheableUnprocessableEntityHttpException extends UnprocessableEntityHttpE /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableUnsupportedMediaTypeHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableUnsupportedMediaTypeHttpException.php index c6f6023..013ca9c 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableUnsupportedMediaTypeHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableUnsupportedMediaTypeHttpException.php @@ -16,7 +16,7 @@ class CacheableUnsupportedMediaTypeHttpException extends UnsupportedMediaTypeHtt /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); }