![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/App/Cache/Tag/Strategy/ |
<?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; /** * Creates strategies using configuration */ class Factory { /** * Default strategy for objects which implement Identity interface * * @var StrategyInterface */ private $identifierStrategy; /** * Strategy for objects which don't implement Identity interface * * @var StrategyInterface */ private $dummyStrategy; /** * Strategies map * * @var array */ private $customStrategies = []; /** * Factory constructor. * * @param Identifier $identifierStrategy * @param Dummy $dummyStrategy * @param array $customStrategies */ public function __construct( \Magento\Framework\App\Cache\Tag\Strategy\Identifier $identifierStrategy, \Magento\Framework\App\Cache\Tag\Strategy\Dummy $dummyStrategy, $customStrategies = [] ) { $this->customStrategies = $customStrategies; $this->identifierStrategy = $identifierStrategy; $this->dummyStrategy = $dummyStrategy; } /** * Return tag strategy for specified object * * @param object $object * @throws \InvalidArgumentException * @return \Magento\Framework\App\Cache\Tag\StrategyInterface */ public function getStrategy($object) { if (!is_object($object)) { throw new \InvalidArgumentException('Provided argument is not an object'); } $classHierarchy = array_merge( [get_class($object) => get_class($object)], class_parents($object), class_implements($object) ); $result = array_intersect(array_keys($this->customStrategies), $classHierarchy); if ($result) { return $this->customStrategies[array_shift($result)]; } if ($object instanceof \Magento\Framework\DataObject\IdentityInterface) { return $this->identifierStrategy; } return $this->dummyStrategy; } }