Completed
Push — master ( 478b01...80afc2 )
by
unknown
23:07
created
lib/public/Files/SimpleFS/ISimpleFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 	 *
50 50
 	 * @since 11.0.0
51 51
 	 */
52
-	public function getSize(): int|float;
52
+	public function getSize(): int | float;
53 53
 
54 54
 	/**
55 55
 	 * Get the ETag
Please login to merge, or discard this patch.
lib/public/Files/SimpleFS/InMemoryFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 	 * @inheritdoc
69 69
 	 * @since 16.0.0
70 70
 	 */
71
-	public function getSize(): int|float {
71
+	public function getSize(): int | float {
72 72
 		return strlen($this->contents);
73 73
 	}
74 74
 
Please login to merge, or discard this patch.
lib/private/Files/Node/NonExistingFolder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 		}
67 67
 	}
68 68
 
69
-	public function getSize($includeMounts = true): int|float {
69
+	public function getSize($includeMounts = true): int | float {
70 70
 		if ($this->fileInfo) {
71 71
 			return parent::getSize($includeMounts);
72 72
 		} else {
Please login to merge, or discard this patch.
lib/private/Files/SimpleFS/SimpleFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 	/**
47 47
 	 * Get the size in bytes
48 48
 	 */
49
-	public function getSize(): int|float {
49
+	public function getSize(): int | float {
50 50
 		return $this->file->getSize();
51 51
 	}
52 52
 
Please login to merge, or discard this patch.
lib/private/Files/SimpleFS/NewSimpleFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	/**
57 57
 	 * Get the size in bytes
58 58
 	 */
59
-	public function getSize(): int|float {
59
+	public function getSize(): int | float {
60 60
 		if ($this->file) {
61 61
 			return $this->file->getSize();
62 62
 		} else {
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 			return $this->file->fopen('w');
221 221
 		} else {
222 222
 			$source = fopen('php://temp', 'w+');
223
-			return CallbackWrapper::wrap($source, null, null, null, null, function () use ($source) {
223
+			return CallbackWrapper::wrap($source, null, null, null, null, function() use ($source) {
224 224
 				rewind($source);
225 225
 				$this->putContent($source);
226 226
 			});
Please login to merge, or discard this patch.
apps/files_versions/lib/Sabre/VersionFile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,14 +65,14 @@  discard block
 block discarded – undo
65 65
 	}
66 66
 
67 67
 	public function getETag(): string {
68
-		return (string)$this->version->getRevisionId();
68
+		return (string) $this->version->getRevisionId();
69 69
 	}
70 70
 
71 71
 	/**
72 72
 	 * @psalm-suppress ImplementedReturnTypeMismatch \Sabre\DAV\IFile::getSize signature does not support 32bit
73 73
 	 * @return int|float
74 74
 	 */
75
-	public function getSize(): int|float {
75
+	public function getSize(): int | float {
76 76
 		return $this->version->getSize();
77 77
 	}
78 78
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	}
86 86
 
87 87
 	public function getName(): string {
88
-		return (string)$this->version->getRevisionId();
88
+		return (string) $this->version->getRevisionId();
89 89
 	}
90 90
 
91 91
 	public function setName($name) {
Please login to merge, or discard this patch.
apps/files_versions/lib/Versions/IVersion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 	 * @return int|float
69 69
 	 * @since 15.0.0
70 70
 	 */
71
-	public function getSize(): int|float;
71
+	public function getSize(): int | float;
72 72
 
73 73
 	/**
74 74
 	 * Get the name of the source file at the time of making this version
Please login to merge, or discard this patch.
apps/files_trashbin/lib/Sabre/AbstractTrash.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 	 * @psalm-suppress ImplementedReturnTypeMismatch \Sabre\DAV\IFile::getSize signature does not support 32bit
62 62
 	 * @return int|float
63 63
 	 */
64
-	public function getSize(): int|float {
64
+	public function getSize(): int | float {
65 65
 		return $this->data->getSize();
66 66
 	}
67 67
 
Please login to merge, or discard this patch.
lib/private/Files/Node/NonExistingFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 		}
67 67
 	}
68 68
 
69
-	public function getSize($includeMounts = true): int|float {
69
+	public function getSize($includeMounts = true): int | float {
70 70
 		if ($this->fileInfo) {
71 71
 			return parent::getSize($includeMounts);
72 72
 		} else {
Please login to merge, or discard this patch.