/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Database/Schema
NameSizeModeActions
BaseSchema.php1560644editdlrm
CachedCollection.php30900644editdlrm
Collection.php51900644editdlrm
CollectionInterface.php17600644editdlrm
MysqlSchema.php1610644editdlrm
MysqlSchemaDialect.php219230644editdlrm
PostgresSchema.php1640644editdlrm
PostgresSchemaDialect.php229740644editdlrm
SchemaDialect.php95180644editdlrm
SqlGeneratorInterface.php24270644editdlrm
SqliteSchema.php1620644editdlrm
SqliteSchemaDialect.php196490644editdlrm
SqlserverSchema.php1650644editdlrm
SqlserverSchemaDialect.php229270644editdlrm
TableSchema.php189610644editdlrm
TableSchemaAwareInterface.php12230644editdlrm
TableSchemaInterface.php65470644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Database/Schema/CachedCollection.php (3090B)
collection = $collection; $this->prefix = $prefix; $this->cacher = $cacher; } /** * @inheritDoc */ public function listTables(): array { return $this->collection->listTables(); } /** * @inheritDoc */ public function describe(string $name, array $options = []): TableSchemaInterface { $options += ['forceRefresh' => false]; $cacheKey = $this->cacheKey($name); if (!$options['forceRefresh']) { $cached = $this->cacher->get($cacheKey); if ($cached !== null) { return $cached; } } $table = $this->collection->describe($name, $options); $this->cacher->set($cacheKey, $table); return $table; } /** * Get the cache key for a given name. * * @param string $name The name to get a cache key for. * @return string The cache key. */ public function cacheKey(string $name): string { return $this->prefix . '_' . $name; } /** * Set a cacher. * * @param \Psr\SimpleCache\CacheInterface $cacher Cacher object * @return $this */ public function setCacher(CacheInterface $cacher) { $this->cacher = $cacher; return $this; } /** * Get a cacher. * * @return \Psr\SimpleCache\CacheInterface $cacher Cacher object */ public function getCacher(): CacheInterface { return $this->cacher; } }