| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/App/Cache/Tag/Strategy/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/App/Cache/Tag/Strategy/Dummy.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\App\Cache\Tag\Strategy;
use Magento\Framework\App\Cache\Tag\StrategyInterface;
/**
* Always return empty tags array
*/
class Dummy implements StrategyInterface
{
/**
* {@inheritdoc}
*/
public function getTags($object)
{
if (!is_object($object)) {
throw new \InvalidArgumentException('Provided argument is not an object');
}
return [];
}
}