@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | * |
| 27 | 27 | * @param int $count The number of bytes |
| 28 | 28 | */ |
| 29 | - public function read(int $count): string|bool; |
|
| 29 | + public function read(int $count): string | bool; |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * Writes the specified data. |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | * |
| 80 | 80 | * @return array<string, mixed>|false |
| 81 | 81 | */ |
| 82 | - public function stat(): array|bool; |
|
| 82 | + public function stat(): array | bool; |
|
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * Retrieve the underlying resource. |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | /** |
| 94 | 94 | * @return int|false Returns the file modified time. |
| 95 | 95 | */ |
| 96 | - public function getMtime(): int|bool |
|
| 96 | + public function getMtime(): int | bool |
|
| 97 | 97 | { |
| 98 | 98 | return $this->mtime = $this->filesystem->mtime($this->key); |
| 99 | 99 | } |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | * @return int|bool The number of bytes that were written into the file, or |
| 110 | 110 | * FALSE on failure |
| 111 | 111 | */ |
| 112 | - public function setContent(string $content, array $metadata = []): int|bool |
|
| 112 | + public function setContent(string $content, array $metadata = []): int | bool |
|
| 113 | 113 | { |
| 114 | 114 | $this->content = $content; |
| 115 | 115 | $this->setMetadata($metadata); |