You are here

private function SQLite3Cache::getFields in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php \Doctrine\Common\Cache\SQLite3Cache::getFields()

Gets an array of the fields in our table.

Return value

array

4 calls to SQLite3Cache::getFields()
SQLite3Cache::doDelete in vendor/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
Deletes a cache entry.
SQLite3Cache::doSave in vendor/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
Puts data into the cache.
SQLite3Cache::findById in vendor/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
Find a single row by ID.
SQLite3Cache::__construct in vendor/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
Constructor.

File

vendor/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php, line 202

Class

SQLite3Cache
SQLite3 cache provider.

Namespace

Doctrine\Common\Cache

Code

private function getFields() {
  return array(
    static::ID_FIELD,
    static::DATA_FIELD,
    static::EXPIRATION_FIELD,
  );
}