aboutsummaryrefslogtreecommitdiff
path: root/lib/CacheAbstract.php
diff options
context:
space:
mode:
authorGravatar logmanoriginal <logmanoriginal@users.noreply.github.com> 2016-09-10 20:41:11 +0200
committerGravatar logmanoriginal <logmanoriginal@users.noreply.github.com> 2016-09-10 20:41:11 +0200
commit62eec43980a3b85134606383996b81084d8fa32c (patch)
treee3d816bcc9d60794600322702df906044cf6ac5d /lib/CacheAbstract.php
parent32ce2b65411d0cb02a0116bf05fef234e52e7c8f (diff)
downloadrss-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.php12
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;
+ }
}