diff options
author | katsew <y.katsew@gmail.com> | 2017-02-20 12:16:55 +0100 |
---|---|---|
committer | katsew <y.katsew@gmail.com> | 2017-02-20 12:16:55 +0100 |
commit | d790a06ad50803dfd9778e6eeb8caf799b908b93 (patch) | |
tree | e5d9d94583ec63b4e1d66e56285faabcfc0b3ceb /system/libraries/Cache/drivers | |
parent | 93d755223f76d01113e239e2913f32d978efc577 (diff) |
Align with spaces
Signed-off-by: katsew <y.katsew@gmail.com>
Diffstat (limited to 'system/libraries/Cache/drivers')
-rw-r--r-- | system/libraries/Cache/drivers/Cache_apcu.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Cache/drivers/Cache_apcu.php b/system/libraries/Cache/drivers/Cache_apcu.php index d4a90ace2..584162d32 100644 --- a/system/libraries/Cache/drivers/Cache_apcu.php +++ b/system/libraries/Cache/drivers/Cache_apcu.php @@ -198,9 +198,9 @@ class CI_Cache_apcu extends CI_Driver { list($data, $time, $ttl) = $stored; return array( - 'expire' => $time + $ttl, - 'mtime' => $time, - 'data' => unserialize($data) + 'expire' => $time + $ttl, + 'mtime' => $time, + 'data' => unserialize($data) ); } |