From 75ad329164e174b3228b54a8601844a974cfc900 Mon Sep 17 00:00:00 2001 From: Kedar Khaire Date: Wed, 16 Oct 2024 17:01:40 +0530 Subject: [PATCH] PHP CS fix for Drupal.Commenting.DocComment.ShortSingleLine --- src/Controller/PrepaidBalanceControllerInterface.php | 7 +++++-- src/Controller/PrepaidBalanceXControllerInterface.php | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/Controller/PrepaidBalanceControllerInterface.php b/src/Controller/PrepaidBalanceControllerInterface.php index 15123059..b5bc4704 100644 --- a/src/Controller/PrepaidBalanceControllerInterface.php +++ b/src/Controller/PrepaidBalanceControllerInterface.php @@ -31,8 +31,11 @@ interface PrepaidBalanceControllerInterface { /** - * Cache prefix is new 'reserved' cache tag format CACHE_MISS_IF_UNCACHEABLE_HTTP_METHOD:$suffix, - * if something is tagged with this, it will be a cache miss on POST requests. + * Cache prefix is new 'reserved' cache tag format. + * + * CACHE_MISS_IF_UNCACHEABLE_HTTP_METHOD:$suffix. + * + * If tagged, it will be a cache miss on POST. */ const CACHE_MISS = 'CACHE_MISS_IF_UNCACHEABLE_HTTP_METHOD:form'; diff --git a/src/Controller/PrepaidBalanceXControllerInterface.php b/src/Controller/PrepaidBalanceXControllerInterface.php index 75333d5c..69e71594 100644 --- a/src/Controller/PrepaidBalanceXControllerInterface.php +++ b/src/Controller/PrepaidBalanceXControllerInterface.php @@ -31,8 +31,11 @@ interface PrepaidBalanceXControllerInterface { /** - * Cache prefix is new 'reserved' cache tag format CACHE_MISS_IF_UNCACHEABLE_HTTP_METHOD:$suffix, - * if something is tagged with this, it will be a cache miss on POST requests. + * Cache prefix is new 'reserved' cache tag format. + * + * CACHE_MISS_IF_UNCACHEABLE_HTTP_METHOD:$suffix. + * + * If tagged, it will be a cache miss on POST. */ const CACHE_MISS = 'CACHE_MISS_IF_UNCACHEABLE_HTTP_METHOD:form';