Skip to content

Commit fc2ce73

Browse files
author
Matthew O'Loughlin
committed
GH-26255: Fix codesniff errors/warnings
1 parent 4c22303 commit fc2ce73

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

app/code/Magento/CacheInvalidate/Model/PurgeCache.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
/**
1111
* Class PurgeCache
12+
* @package Magento\CacheInvalidate\Model
1213
*/
1314
class PurgeCache
1415
{

app/code/Magento/CacheInvalidate/Observer/FlushAllCacheObserver.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
use Magento\Framework\Event\ObserverInterface;
99

10+
/**
11+
* Class FlushAllCacheObserver
12+
* @package Magento\CacheInvalidate\Observer
13+
*/
1014
class FlushAllCacheObserver implements ObserverInterface
1115
{
1216
/**

app/code/Magento/CacheInvalidate/Observer/InvalidateVarnishObserver.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
use Magento\Framework\Event\ObserverInterface;
99

10+
/**
11+
* Class InvalidateVarnishObserver
12+
* @package Magento\CacheInvalidate\Observer
13+
*/
1014
class InvalidateVarnishObserver implements ObserverInterface
1115
{
1216
/**
@@ -41,8 +45,7 @@ public function __construct(
4145
}
4246

4347
/**
44-
* If Varnish caching is enabled it collects array of tags
45-
* of incoming object and asks to clean cache.
48+
* If Varnish caching is enabled, it collects array of tags of incoming object and asks to clean cache.
4649
*
4750
* @param \Magento\Framework\Event\Observer $observer
4851
* @return void
@@ -68,6 +71,8 @@ public function execute(\Magento\Framework\Event\Observer $observer)
6871
}
6972

7073
/**
74+
* Resolve tags for the provided model instance being purged.
75+
*
7176
* @deprecated 100.1.2
7277
* @return \Magento\Framework\App\Cache\Tag\Resolver
7378
*/

0 commit comments

Comments
 (0)