/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Datasource
NameSizeModeActions
Exception/-0755rm
Locator/-0755rm
Paging/-0755rm
composer.json12840644editdlrm
ConnectionInterface.php51160644editdlrm
ConnectionManager.php70050644editdlrm
ConnectionRegistry.php32820644editdlrm
EntityInterface.php85290644editdlrm
EntityTrait.php349720644editdlrm
FactoryLocator.php32240644editdlrm
FixtureInterface.php24390644editdlrm
InvalidPropertyInterface.php20820644editdlrm
LICENSE.txt12040644editdlrm
ModelAwareTrait.php60730644editdlrm
Paginator.php2000644editdlrm
PaginatorInterface.php2130644editdlrm
QueryCacher.php38350644editdlrm
QueryInterface.php150040644editdlrm
QueryTrait.php194680644editdlrm
README.md34150644editdlrm
RepositoryInterface.php92620644editdlrm
ResultSetDecorator.php13730644editdlrm
ResultSetInterface.php8840644editdlrm
RuleInvoker.php37810644editdlrm
RulesAwareTrait.php41370644editdlrm
RulesChecker.php116350644editdlrm
SchemaInterface.php49240644editdlrm
SimplePaginator.php2040644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Datasource/QueryCacher.php (3835B)
_key = $key; if (!is_string($config) && !($config instanceof CacheInterface)) { throw new RuntimeException('Cache configs must be strings or \Psr\SimpleCache\CacheInterface instances.'); } $this->_config = $config; } /** * Load the cached results from the cache or run the query. * * @param object $query The query the cache read is for. * @return mixed|null Either the cached results or null. */ public function fetch(object $query) { $key = $this->_resolveKey($query); $storage = $this->_resolveCacher(); $result = $storage->get($key); if (empty($result)) { return null; } return $result; } /** * Store the result set into the cache. * * @param object $query The query the cache read is for. * @param \Traversable $results The result set to store. * @return bool True if the data was successfully cached, false on failure */ public function store(object $query, Traversable $results): bool { $key = $this->_resolveKey($query); $storage = $this->_resolveCacher(); return $storage->set($key, $results); } /** * Get/generate the cache key. * * @param object $query The query to generate a key for. * @return string * @throws \RuntimeException */ protected function _resolveKey(object $query): string { if (is_string($this->_key)) { return $this->_key; } $func = $this->_key; $key = $func($query); if (!is_string($key)) { $msg = sprintf('Cache key functions must return a string. Got %s.', var_export($key, true)); throw new RuntimeException($msg); } return $key; } /** * Get the cache engine. * * @return \Psr\SimpleCache\CacheInterface */ protected function _resolveCacher() { if (is_string($this->_config)) { return Cache::pool($this->_config); } return $this->_config; } }