Skip to content

Commit

Permalink
GH-26255: Fix codesniff errors/warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew O'Loughlin committed Jan 6, 2020
1 parent 4c22303 commit fc2ce73
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/code/Magento/CacheInvalidate/Model/PurgeCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

/**
* Class PurgeCache
* @package Magento\CacheInvalidate\Model
*/
class PurgeCache
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

use Magento\Framework\Event\ObserverInterface;

/**
* Class FlushAllCacheObserver
* @package Magento\CacheInvalidate\Observer
*/
class FlushAllCacheObserver implements ObserverInterface
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

use Magento\Framework\Event\ObserverInterface;

/**
* Class InvalidateVarnishObserver
* @package Magento\CacheInvalidate\Observer
*/
class InvalidateVarnishObserver implements ObserverInterface
{
/**
Expand Down Expand Up @@ -41,8 +45,7 @@ public function __construct(
}

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

/**
* Resolve tags for the provided model instance being purged.
*
* @deprecated 100.1.2
* @return \Magento\Framework\App\Cache\Tag\Resolver
*/
Expand Down

0 comments on commit fc2ce73

Please sign in to comment.