Completed
Pull Request — master (#9773)
by Georg
224:33 queued 202:35
created
lib/public/Calendar/Resource/IBackend.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -32,39 +32,39 @@
 block discarded – undo
32 32
  */
33 33
 interface IBackend {
34 34
 
35
-	/**
36
-	 * get a list of all resources in this backend
37
-	 *
38
-	 * @throws BackendTemporarilyUnavailableException
39
-	 * @return IResource[]
40
-	 * @since 14.0.0
41
-	 */
42
-	public function getAllResources():array;
35
+    /**
36
+     * get a list of all resources in this backend
37
+     *
38
+     * @throws BackendTemporarilyUnavailableException
39
+     * @return IResource[]
40
+     * @since 14.0.0
41
+     */
42
+    public function getAllResources():array;
43 43
 
44
-	/**
45
-	 * get a list of all resource identifiers in this backend
46
-	 *
47
-	 * @throws BackendTemporarilyUnavailableException
48
-	 * @return string[]
49
-	 * @since 14.0.0
50
-	 */
51
-	public function listAllResources():array;
44
+    /**
45
+     * get a list of all resource identifiers in this backend
46
+     *
47
+     * @throws BackendTemporarilyUnavailableException
48
+     * @return string[]
49
+     * @since 14.0.0
50
+     */
51
+    public function listAllResources():array;
52 52
 
53
-	/**
54
-	 * get a resource by it's id
55
-	 *
56
-	 * @param string $id
57
-	 * @throws BackendTemporarilyUnavailableException
58
-	 * @return IResource|null
59
-	 * @since 14.0.0
60
-	 */
61
-	public function getResource($id);
53
+    /**
54
+     * get a resource by it's id
55
+     *
56
+     * @param string $id
57
+     * @throws BackendTemporarilyUnavailableException
58
+     * @return IResource|null
59
+     * @since 14.0.0
60
+     */
61
+    public function getResource($id);
62 62
 
63
-	/**
64
-	 * Get unique identifier of the backend
65
-	 *
66
-	 * @return string
67
-	 * @since 14.0.0
68
-	 */
69
-	public function getBackendIdentifier():string;
63
+    /**
64
+     * Get unique identifier of the backend
65
+     *
66
+     * @return string
67
+     * @since 14.0.0
68
+     */
69
+    public function getBackendIdentifier():string;
70 70
 }
Please login to merge, or discard this patch.
lib/public/Calendar/Room/IManager.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -31,41 +31,41 @@
 block discarded – undo
31 31
  */
32 32
 interface IManager {
33 33
 
34
-	/**
35
-	 * Registers a room backend
36
-	 *
37
-	 * @param IBackend $backend
38
-	 * @return void
39
-	 * @since 14.0.0
40
-	 */
41
-	public function registerBackend(IBackend $backend);
34
+    /**
35
+     * Registers a room backend
36
+     *
37
+     * @param IBackend $backend
38
+     * @return void
39
+     * @since 14.0.0
40
+     */
41
+    public function registerBackend(IBackend $backend);
42 42
 
43
-	/**
44
-	 * Unregisters a room backend
45
-	 *
46
-	 * @param IBackend $backend
47
-	 * @return void
48
-	 * @since 14.0.0
49
-	 */
50
-	public function unregisterBackend(IBackend $backend);
43
+    /**
44
+     * Unregisters a room backend
45
+     *
46
+     * @param IBackend $backend
47
+     * @return void
48
+     * @since 14.0.0
49
+     */
50
+    public function unregisterBackend(IBackend $backend);
51 51
 
52
-	/**
53
-	 * @return IBackend[]
54
-	 * @since 14.0.0
55
-	 */
56
-	public function getBackends():array;
52
+    /**
53
+     * @return IBackend[]
54
+     * @since 14.0.0
55
+     */
56
+    public function getBackends():array;
57 57
 
58
-	/**
59
-	 * @param string $backendId
60
-	 * @return IBackend
61
-	 * @since 14.0.0
62
-	 */
63
-	public function getBackend($backendId):IBackend;
58
+    /**
59
+     * @param string $backendId
60
+     * @return IBackend
61
+     * @since 14.0.0
62
+     */
63
+    public function getBackend($backendId):IBackend;
64 64
 
65
-	/**
66
-	 * removes all registered backend instances
67
-	 * @return void
68
-	 * @since 14.0.0
69
-	 */
70
-	public function clear();
65
+    /**
66
+     * removes all registered backend instances
67
+     * @return void
68
+     * @since 14.0.0
69
+     */
70
+    public function clear();
71 71
 }
Please login to merge, or discard this patch.
lib/public/Calendar/Room/IBackend.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -32,39 +32,39 @@
 block discarded – undo
32 32
  */
33 33
 interface IBackend {
34 34
 
35
-	/**
36
-	 * get a list of all rooms in this backend
37
-	 *
38
-	 * @throws BackendTemporarilyUnavailableException
39
-	 * @return IRoom[]
40
-	 * @since 14.0.0
41
-	 */
42
-	public function getAllRooms():array;
35
+    /**
36
+     * get a list of all rooms in this backend
37
+     *
38
+     * @throws BackendTemporarilyUnavailableException
39
+     * @return IRoom[]
40
+     * @since 14.0.0
41
+     */
42
+    public function getAllRooms():array;
43 43
 
44
-	/**
45
-	 * get a list of all room identifiers in this backend
46
-	 *
47
-	 * @throws BackendTemporarilyUnavailableException
48
-	 * @return string[]
49
-	 * @since 14.0.0
50
-	 */
51
-	public function listAllRooms():array;
44
+    /**
45
+     * get a list of all room identifiers in this backend
46
+     *
47
+     * @throws BackendTemporarilyUnavailableException
48
+     * @return string[]
49
+     * @since 14.0.0
50
+     */
51
+    public function listAllRooms():array;
52 52
 
53
-	/**
54
-	 * get a room by it's id
55
-	 *
56
-	 * @param string $id
57
-	 * @throws BackendTemporarilyUnavailableException
58
-	 * @return IRoom|null
59
-	 * @since 14.0.0
60
-	 */
61
-	public function getRoom($id);
53
+    /**
54
+     * get a room by it's id
55
+     *
56
+     * @param string $id
57
+     * @throws BackendTemporarilyUnavailableException
58
+     * @return IRoom|null
59
+     * @since 14.0.0
60
+     */
61
+    public function getRoom($id);
62 62
 
63
-	/**
64
-	 * Get unique identifier of the backend
65
-	 *
66
-	 * @return string
67
-	 * @since 14.0.0
68
-	 */
69
-	public function getBackendIdentifier():string;
63
+    /**
64
+     * Get unique identifier of the backend
65
+     *
66
+     * @return string
67
+     * @since 14.0.0
68
+     */
69
+    public function getBackendIdentifier():string;
70 70
 }
Please login to merge, or discard this patch.