diff options
author | 2016-09-10 20:41:11 +0200 | |
---|---|---|
committer | 2016-09-10 20:41:11 +0200 | |
commit | 62eec43980a3b85134606383996b81084d8fa32c (patch) | |
tree | e3d816bcc9d60794600322702df906044cf6ac5d /lib/CacheAbstract.php | |
parent | 32ce2b65411d0cb02a0116bf05fef234e52e7c8f (diff) | |
download | rss-bridge-62eec43980a3b85134606383996b81084d8fa32c.tar.gz rss-bridge-62eec43980a3b85134606383996b81084d8fa32c.tar.zst rss-bridge-62eec43980a3b85134606383996b81084d8fa32c.zip |
[core] Apply common indentation
All files are now using tabs for indentation
Diffstat (limited to 'lib/CacheAbstract.php')
-rw-r--r-- | lib/CacheAbstract.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/CacheAbstract.php b/lib/CacheAbstract.php index 98608b25..e6c39d8c 100644 --- a/lib/CacheAbstract.php +++ b/lib/CacheAbstract.php @@ -1,11 +1,11 @@ <?php require_once(__DIR__ . '/CacheInterface.php'); -abstract class CacheAbstract implements CacheInterface{ - protected $param; +abstract class CacheAbstract implements CacheInterface { + protected $param; - public function prepare(array $param){ - $this->param = $param; + public function prepare(array $param){ + $this->param = $param; - return $this; - } + return $this; + } } |