aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Mail/Provider/IAttachment.php
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2024-08-23 15:10:27 +0200
committerDaniel Kesselberg <mail@danielkesselberg.de>2024-08-25 19:34:58 +0200
commitaf6de04e9e141466dc229e444ff3f146f4a34765 (patch)
tree7b93f521865cdecdadb33637dea33bea242e7969 /lib/public/Mail/Provider/IAttachment.php
parent1cc6b3577fdbeadece7e4e6478e7f7755555b41a (diff)
downloadnextcloud-server-af6de04e9e141466dc229e444ff3f146f4a34765.tar.gz
nextcloud-server-af6de04e9e141466dc229e444ff3f146f4a34765.zip
style: update codestyle for coding-standard 1.2.3
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'lib/public/Mail/Provider/IAttachment.php')
-rw-r--r--lib/public/Mail/Provider/IAttachment.php30
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/public/Mail/Provider/IAttachment.php b/lib/public/Mail/Provider/IAttachment.php
index b5bdffc0e81..e27f5ee066b 100644
--- a/lib/public/Mail/Provider/IAttachment.php
+++ b/lib/public/Mail/Provider/IAttachment.php
@@ -23,9 +23,9 @@ interface IAttachment {
*
* @since 30.0.0
*
- * @param string $value file name (e.g example.txt)
+ * @param string $value file name (e.g example.txt)
*
- * @return self return this object for command chaining
+ * @return self return this object for command chaining
*/
public function setName(string $value): self;
@@ -34,18 +34,18 @@ interface IAttachment {
*
* @since 30.0.0
*
- * @return string | null returns the attachment file name or null if one is not set
+ * @return string | null returns the attachment file name or null if one is not set
*/
- public function getName(): string | null;
+ public function getName(): string|null;
/**
* sets the attachment mime type
*
* @since 30.0.0
*
- * @param string $value mime type (e.g. text/plain)
+ * @param string $value mime type (e.g. text/plain)
*
- * @return self return this object for command chaining
+ * @return self return this object for command chaining
*/
public function setType(string $value): self;
@@ -54,18 +54,18 @@ interface IAttachment {
*
* @since 30.0.0
*
- * @return string | null returns the attachment mime type or null if not set
+ * @return string | null returns the attachment mime type or null if not set
*/
- public function getType(): string | null;
+ public function getType(): string|null;
/**
* sets the attachment contents (actual data)
*
* @since 30.0.0
*
- * @param string $value binary contents of file
+ * @param string $value binary contents of file
*
- * @return self return this object for command chaining
+ * @return self return this object for command chaining
*/
public function setContents(string $value): self;
@@ -74,18 +74,18 @@ interface IAttachment {
*
* @since 30.0.0
*
- * @return string | null returns the attachment contents or null if not set
+ * @return string | null returns the attachment contents or null if not set
*/
- public function getContents(): string | null;
+ public function getContents(): string|null;
/**
* sets the embedded status of the attachment
*
* @since 30.0.0
*
- * @param bool $value true - embedded / false - not embedded
+ * @param bool $value true - embedded / false - not embedded
*
- * @return self return this object for command chaining
+ * @return self return this object for command chaining
*/
public function setEmbedded(bool $value): self;
@@ -94,7 +94,7 @@ interface IAttachment {
*
* @since 30.0.0
*
- * @return bool embedded status of the attachment
+ * @return bool embedded status of the attachment
*/
public function getEmbedded(): bool;