Skip to content

Commit

Permalink
PHP CS fix for Drupal.Commenting.DocComment.ShortSingleLine (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
kedarkhaire authored Oct 16, 2024
1 parent a9b6fcf commit f2a159a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions src/Controller/PrepaidBalanceControllerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
7 changes: 5 additions & 2 deletions src/Controller/PrepaidBalanceXControllerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit f2a159a

Please sign in to comment.