File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/src/Application/Services/Cache/CacheApplicationService.php
Back
<?php namespace AmeliaBooking\Application\Services\Cache; use AmeliaBooking\Domain\Entity\Cache\Cache; use AmeliaBooking\Infrastructure\Common\Exceptions\QueryExecutionException; use AmeliaBooking\Infrastructure\Common\Container; use AmeliaBooking\Infrastructure\Repository\Cache\CacheRepository; use AmeliaBooking\Infrastructure\WP\Integrations\WooCommerce\WooCommerceService; use Interop\Container\Exception\ContainerException; use InvalidArgumentException; use Slim\Exception\ContainerValueNotFoundException; /** * Class CacheApplicationService * * @package AmeliaBooking\Application\Services\Cache */ class CacheApplicationService { private $container; /** * CacheApplicationService constructor. * * @param Container $container * * @throws InvalidArgumentException */ public function __construct(Container $container) { $this->container = $container; } /** * @param string $name * * @return array|null * * @throws ContainerValueNotFoundException * @throws QueryExecutionException */ public function getCacheByName($name) { /** @var CacheRepository $cacheRepository */ $cacheRepository = $this->container->get('domain.cache.repository'); /** @var Cache $cache */ $cache = ($data = explode('_', $name)) && isset($data[0], $data[1]) ? $cacheRepository->getByIdAndName($data[0], $data[1]) : null; if ($cache && $cache->getData()) { return json_decode($cache->getData()->getValue(), true); } return null; } /** * @param string $name * * @return array|null * * @throws ContainerValueNotFoundException * @throws ContainerException */ public function getWcCacheByName($name) { /** @var Cache $cache */ return ($data = explode('_', $name)) && isset($data[0], $data[1]) ? WooCommerceService::getCacheData($data[0]) : null; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings