Completed
Pull Request — master (#6571)
by Robin
49:48 queued 27:59
created
lib/public/ICacheFactory.php 2 patches
Indentation   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -30,49 +30,49 @@
 block discarded – undo
30 30
  * @since 7.0.0
31 31
  */
32 32
 interface ICacheFactory{
33
-	/**
34
-	 * Get a distributed memory cache instance
35
-	 *
36
-	 * All entries added trough the cache instance will be namespaced by $prefix to prevent collisions between apps
37
-	 *
38
-	 * @param string $prefix
39
-	 * @return \OCP\ICache
40
-	 * @since 7.0.0
41
-	 */
42
-	public function create($prefix = '');
33
+    /**
34
+     * Get a distributed memory cache instance
35
+     *
36
+     * All entries added trough the cache instance will be namespaced by $prefix to prevent collisions between apps
37
+     *
38
+     * @param string $prefix
39
+     * @return \OCP\ICache
40
+     * @since 7.0.0
41
+     */
42
+    public function create($prefix = '');
43 43
 
44
-	/**
45
-	 * Check if any memory cache backend is available
46
-	 *
47
-	 * @return bool
48
-	 * @since 7.0.0
49
-	 */
50
-	public function isAvailable();
44
+    /**
45
+     * Check if any memory cache backend is available
46
+     *
47
+     * @return bool
48
+     * @since 7.0.0
49
+     */
50
+    public function isAvailable();
51 51
 
52
-	/**
53
-	 * create a cache instance for storing locks
54
-	 *
55
-	 * @param string $prefix
56
-	 * @return \OCP\IMemcache
57
-	 * @since 13.0.0
58
-	 */
59
-	public function createLocking($prefix = '');
52
+    /**
53
+     * create a cache instance for storing locks
54
+     *
55
+     * @param string $prefix
56
+     * @return \OCP\IMemcache
57
+     * @since 13.0.0
58
+     */
59
+    public function createLocking($prefix = '');
60 60
 
61
-	/**
62
-	 * create a distributed cache instance
63
-	 *
64
-	 * @param string $prefix
65
-	 * @return \OC\Memcache\Cache
66
-	 * @since 13.0.0
67
-	 */
68
-	public function createDistributed($prefix = '');
61
+    /**
62
+     * create a distributed cache instance
63
+     *
64
+     * @param string $prefix
65
+     * @return \OC\Memcache\Cache
66
+     * @since 13.0.0
67
+     */
68
+    public function createDistributed($prefix = '');
69 69
 
70
-	/**
71
-	 * create a local cache instance
72
-	 *
73
-	 * @param string $prefix
74
-	 * @return \OC\Memcache\Cache
75
-	 * @since 13.0.0
76
-	 */
77
-	public function createLocal($prefix = '');
70
+    /**
71
+     * create a local cache instance
72
+     *
73
+     * @param string $prefix
74
+     * @return \OC\Memcache\Cache
75
+     * @since 13.0.0
76
+     */
77
+    public function createLocal($prefix = '');
78 78
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
  * @package OCP
30 30
  * @since 7.0.0
31 31
  */
32
-interface ICacheFactory{
32
+interface ICacheFactory {
33 33
 	/**
34 34
 	 * Get a distributed memory cache instance
35 35
 	 *
Please login to merge, or discard this patch.