Passed
Push — master ( 2fd7fe...f5932e )
by Robin
14:46 queued 13s
created
lib/public/Files/Notify/IRenameChange.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -29,12 +29,12 @@
 block discarded – undo
29 29
  * @since 12.0.0
30 30
  */
31 31
 interface IRenameChange extends IChange {
32
-	/**
33
-	 * Get the new path of the renamed file relative to the storage root
34
-	 *
35
-	 * @return string
36
-	 *
37
-	 * @since 12.0.0
38
-	 */
39
-	public function getTargetPath();
32
+    /**
33
+     * Get the new path of the renamed file relative to the storage root
34
+     *
35
+     * @return string
36
+     *
37
+     * @since 12.0.0
38
+     */
39
+    public function getTargetPath();
40 40
 }
Please login to merge, or discard this patch.
lib/public/Files/Cache/IUpdater.php 1 patch
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -30,47 +30,47 @@
 block discarded – undo
30 30
  * @since 9.0.0
31 31
  */
32 32
 interface IUpdater {
33
-	/**
34
-	 * Get the propagator for etags and mtime for the view the updater works on
35
-	 *
36
-	 * @return IPropagator
37
-	 * @since 9.0.0
38
-	 */
39
-	public function getPropagator();
33
+    /**
34
+     * Get the propagator for etags and mtime for the view the updater works on
35
+     *
36
+     * @return IPropagator
37
+     * @since 9.0.0
38
+     */
39
+    public function getPropagator();
40 40
 
41
-	/**
42
-	 * Propagate etag and mtime changes for the parent folders of $path up to the root of the filesystem
43
-	 *
44
-	 * @param string $path the path of the file to propagate the changes for
45
-	 * @param int|null $time the timestamp to set as mtime for the parent folders, if left out the current time is used
46
-	 * @since 9.0.0
47
-	 */
48
-	public function propagate($path, $time = null);
41
+    /**
42
+     * Propagate etag and mtime changes for the parent folders of $path up to the root of the filesystem
43
+     *
44
+     * @param string $path the path of the file to propagate the changes for
45
+     * @param int|null $time the timestamp to set as mtime for the parent folders, if left out the current time is used
46
+     * @since 9.0.0
47
+     */
48
+    public function propagate($path, $time = null);
49 49
 
50
-	/**
51
-	 * Update the cache for $path and update the size, etag and mtime of the parent folders
52
-	 *
53
-	 * @param string $path
54
-	 * @param int $time
55
-	 * @since 9.0.0
56
-	 */
57
-	public function update($path, $time = null);
50
+    /**
51
+     * Update the cache for $path and update the size, etag and mtime of the parent folders
52
+     *
53
+     * @param string $path
54
+     * @param int $time
55
+     * @since 9.0.0
56
+     */
57
+    public function update($path, $time = null);
58 58
 
59
-	/**
60
-	 * Remove $path from the cache and update the size, etag and mtime of the parent folders
61
-	 *
62
-	 * @param string $path
63
-	 * @since 9.0.0
64
-	 */
65
-	public function remove($path);
59
+    /**
60
+     * Remove $path from the cache and update the size, etag and mtime of the parent folders
61
+     *
62
+     * @param string $path
63
+     * @since 9.0.0
64
+     */
65
+    public function remove($path);
66 66
 
67
-	/**
68
-	 * Rename a file or folder in the cache and update the size, etag and mtime of the parent folders
69
-	 *
70
-	 * @param IStorage $sourceStorage
71
-	 * @param string $source
72
-	 * @param string $target
73
-	 * @since 9.0.0
74
-	 */
75
-	public function renameFromStorage(IStorage $sourceStorage, $source, $target);
67
+    /**
68
+     * Rename a file or folder in the cache and update the size, etag and mtime of the parent folders
69
+     *
70
+     * @param IStorage $sourceStorage
71
+     * @param string $source
72
+     * @param string $target
73
+     * @since 9.0.0
74
+     */
75
+    public function renameFromStorage(IStorage $sourceStorage, $source, $target);
76 76
 }
Please login to merge, or discard this patch.
lib/public/LDAP/IDeletionFlagSupport.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -29,17 +29,17 @@
 block discarded – undo
29 29
  * @since 11.0.0
30 30
  */
31 31
 interface IDeletionFlagSupport {
32
-	/**
33
-	 * Flag record for deletion.
34
-	 * @param string $uid user id
35
-	 * @since 11.0.0
36
-	 */
37
-	public function flagRecord($uid);
32
+    /**
33
+     * Flag record for deletion.
34
+     * @param string $uid user id
35
+     * @since 11.0.0
36
+     */
37
+    public function flagRecord($uid);
38 38
 	
39
-	/**
40
-	 * Unflag record for deletion.
41
-	 * @param string $uid user id
42
-	 * @since 11.0.0
43
-	 */
44
-	public function unflagRecord($uid);
39
+    /**
40
+     * Unflag record for deletion.
41
+     * @param string $uid user id
42
+     * @since 11.0.0
43
+     */
44
+    public function unflagRecord($uid);
45 45
 }
Please login to merge, or discard this patch.
lib/public/AutoloadNotAllowedException.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@
 block discarded – undo
27 27
  * @since 8.2.0
28 28
  */
29 29
 class AutoloadNotAllowedException extends \DomainException {
30
-	/**
31
-	 * @param string $path
32
-	 * @since 8.2.0
33
-	 */
34
-	public function __construct($path) {
35
-		parent::__construct('Autoload path not allowed: '.$path);
36
-	}
30
+    /**
31
+     * @param string $path
32
+     * @since 8.2.0
33
+     */
34
+    public function __construct($path) {
35
+        parent::__construct('Autoload path not allowed: '.$path);
36
+    }
37 37
 }
38 38
 
Please login to merge, or discard this patch.
lib/public/Lockdown/ILockdownManager.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -25,26 +25,26 @@
 block discarded – undo
25 25
  * @since 9.2
26 26
  */
27 27
 interface ILockdownManager {
28
-	/**
29
-	 * Enable the lockdown restrictions
30
-	 *
31
-	 * @since 9.2
32
-	 */
33
-	public function enable();
28
+    /**
29
+     * Enable the lockdown restrictions
30
+     *
31
+     * @since 9.2
32
+     */
33
+    public function enable();
34 34
 
35
-	/**
36
-	 * Set the active token to get the restrictions from and enable the lockdown
37
-	 *
38
-	 * @param IToken $token
39
-	 * @since 9.2
40
-	 */
41
-	public function setToken(IToken $token);
35
+    /**
36
+     * Set the active token to get the restrictions from and enable the lockdown
37
+     *
38
+     * @param IToken $token
39
+     * @since 9.2
40
+     */
41
+    public function setToken(IToken $token);
42 42
 
43
-	/**
44
-	 * Check whether or not filesystem access is allowed
45
-	 *
46
-	 * @return bool
47
-	 * @since 9.2
48
-	 */
49
-	public function canAccessFilesystem();
43
+    /**
44
+     * Check whether or not filesystem access is allowed
45
+     *
46
+     * @return bool
47
+     * @since 9.2
48
+     */
49
+    public function canAccessFilesystem();
50 50
 }
Please login to merge, or discard this patch.
lib/public/Share_Backend_Collection.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -31,11 +31,11 @@
 block discarded – undo
31 31
  * @since 5.0.0
32 32
  */
33 33
 interface Share_Backend_Collection extends Share_Backend {
34
-	/**
35
-	 * Get the sources of the children of the item
36
-	 * @param string $itemSource
37
-	 * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable
38
-	 * @since 5.0.0
39
-	 */
40
-	public function getChildren($itemSource);
34
+    /**
35
+     * Get the sources of the children of the item
36
+     * @param string $itemSource
37
+     * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable
38
+     * @since 5.0.0
39
+     */
40
+    public function getChildren($itemSource);
41 41
 }
Please login to merge, or discard this patch.
lib/public/AppFramework/Http/DataDownloadResponse.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -29,36 +29,36 @@
 block discarded – undo
29 29
  * @since 8.0.0
30 30
  */
31 31
 class DataDownloadResponse extends DownloadResponse {
32
-	/**
33
-	 * @var string
34
-	 */
35
-	private $data;
32
+    /**
33
+     * @var string
34
+     */
35
+    private $data;
36 36
 
37
-	/**
38
-	 * Creates a response that prompts the user to download the text
39
-	 * @param string $data text to be downloaded
40
-	 * @param string $filename the name that the downloaded file should have
41
-	 * @param string $contentType the mimetype that the downloaded file should have
42
-	 * @since 8.0.0
43
-	 */
44
-	public function __construct($data, $filename, $contentType) {
45
-		$this->data = $data;
46
-		parent::__construct($filename, $contentType);
47
-	}
37
+    /**
38
+     * Creates a response that prompts the user to download the text
39
+     * @param string $data text to be downloaded
40
+     * @param string $filename the name that the downloaded file should have
41
+     * @param string $contentType the mimetype that the downloaded file should have
42
+     * @since 8.0.0
43
+     */
44
+    public function __construct($data, $filename, $contentType) {
45
+        $this->data = $data;
46
+        parent::__construct($filename, $contentType);
47
+    }
48 48
 
49
-	/**
50
-	 * @param string $data
51
-	 * @since 8.0.0
52
-	 */
53
-	public function setData($data) {
54
-		$this->data = $data;
55
-	}
49
+    /**
50
+     * @param string $data
51
+     * @since 8.0.0
52
+     */
53
+    public function setData($data) {
54
+        $this->data = $data;
55
+    }
56 56
 
57
-	/**
58
-	 * @return string
59
-	 * @since 8.0.0
60
-	 */
61
-	public function render() {
62
-		return $this->data;
63
-	}
57
+    /**
58
+     * @return string
59
+     * @since 8.0.0
60
+     */
61
+    public function render() {
62
+        return $this->data;
63
+    }
64 64
 }
Please login to merge, or discard this patch.
lib/public/DB/QueryBuilder/IQueryFunction.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
  * @since 8.2.0
27 27
  */
28 28
 interface IQueryFunction {
29
-	/**
30
-	 * @return string
31
-	 * @since 8.2.0
32
-	 */
33
-	public function __toString();
29
+    /**
30
+     * @return string
31
+     * @since 8.2.0
32
+     */
33
+    public function __toString();
34 34
 }
Please login to merge, or discard this patch.
lib/public/DB/QueryBuilder/ILiteral.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
  * @since 8.2.0
27 27
  */
28 28
 interface ILiteral {
29
-	/**
30
-	 * @return string
31
-	 * @since 8.2.0
32
-	 */
33
-	public function __toString();
29
+    /**
30
+     * @return string
31
+     * @since 8.2.0
32
+     */
33
+    public function __toString();
34 34
 }
Please login to merge, or discard this patch.