summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache
diff options
context:
space:
mode:
authorkatsew <y.katsew@gmail.com>2017-02-20 12:16:55 +0100
committerkatsew <y.katsew@gmail.com>2017-02-20 12:16:55 +0100
commitd790a06ad50803dfd9778e6eeb8caf799b908b93 (patch)
treee5d9d94583ec63b4e1d66e56285faabcfc0b3ceb /system/libraries/Cache
parent93d755223f76d01113e239e2913f32d978efc577 (diff)
Align with spaces
Signed-off-by: katsew <y.katsew@gmail.com>
Diffstat (limited to 'system/libraries/Cache')
-rw-r--r--system/libraries/Cache/drivers/Cache_apcu.php6
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)
);
}