aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Mail
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/private/Mail
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/private/Mail')
-rw-r--r--lib/private/Mail/EMailTemplate.php12
-rw-r--r--lib/private/Mail/Mailer.php8
-rw-r--r--lib/private/Mail/Provider/Manager.php32
3 files changed, 26 insertions, 26 deletions
diff --git a/lib/private/Mail/EMailTemplate.php b/lib/private/Mail/EMailTemplate.php
index 8047cb80bad..2cb222fd137 100644
--- a/lib/private/Mail/EMailTemplate.php
+++ b/lib/private/Mail/EMailTemplate.php
@@ -346,7 +346,7 @@ EOF;
* Adds a heading to the email
*
* @param string|bool $plainTitle Title that is used in the plain text email
- * if empty the $title is used, if false none will be used
+ * if empty the $title is used, if false none will be used
*/
public function addHeading(string $title, $plainTitle = ''): void {
if ($this->footerAdded) {
@@ -379,7 +379,7 @@ EOF;
*
* @param string $text Note: When $plainText falls back to this, HTML is automatically escaped in the HTML email
* @param string|bool $plainText Text that is used in the plain text email
- * if empty the $text is used, if false none will be used
+ * if empty the $text is used, if false none will be used
*/
public function addBodyText(string $text, $plainText = ''): void {
if ($this->footerAdded) {
@@ -406,9 +406,9 @@ EOF;
* @param string $metaInfo Note: When $plainMetaInfo falls back to this, HTML is automatically escaped in the HTML email
* @param string $icon Absolute path, must be 16*16 pixels
* @param string|bool $plainText Text that is used in the plain text email
- * if empty or true the $text is used, if false none will be used
+ * if empty or true the $text is used, if false none will be used
* @param string|bool $plainMetaInfo Meta info that is used in the plain text email
- * if empty or true the $metaInfo is used, if false none will be used
+ * if empty or true the $metaInfo is used, if false none will be used
* @param integer $plainIndent plainIndent If > 0, Indent plainText by this amount.
* @since 12.0.0
*/
@@ -425,7 +425,7 @@ EOF;
if ($plainText === '' || $plainText === true) {
$plainText = $text;
$text = htmlspecialchars($text);
- $text = str_replace("\n", "<br/>", $text); // convert newlines to HTML breaks
+ $text = str_replace("\n", '<br/>', $text); // convert newlines to HTML breaks
}
if ($plainMetaInfo === '' || $plainMetaInfo === true) {
$plainMetaInfo = $metaInfo;
@@ -536,7 +536,7 @@ EOF;
* @param string $text Text of button; Note: When $plainText falls back to this, HTML is automatically escaped in the HTML email
* @param string $url URL of button
* @param string|false $plainText Text of button in plain text version
- * if empty the $text is used, if false none will be used
+ * if empty the $text is used, if false none will be used
*
* @since 12.0.0
*/
diff --git a/lib/private/Mail/Mailer.php b/lib/private/Mail/Mailer.php
index 4ddb748fc26..b24e52ce95b 100644
--- a/lib/private/Mail/Mailer.php
+++ b/lib/private/Mail/Mailer.php
@@ -118,8 +118,8 @@ class Mailer implements IMailer {
$logoDimensions = $this->config->getAppValue('theming', 'logoDimensions', self::DEFAULT_DIMENSIONS);
if (str_contains($logoDimensions, 'x')) {
[$width, $height] = explode('x', $logoDimensions);
- $width = (int) $width;
- $height = (int) $height;
+ $width = (int)$width;
+ $height = (int)$height;
if ($width > self::MAX_LOGO_SIZE || $height > self::MAX_LOGO_SIZE) {
if ($width === $height) {
@@ -127,9 +127,9 @@ class Mailer implements IMailer {
$logoHeight = self::MAX_LOGO_SIZE;
} elseif ($width > $height) {
$logoWidth = self::MAX_LOGO_SIZE;
- $logoHeight = (int) (($height / $width) * self::MAX_LOGO_SIZE);
+ $logoHeight = (int)(($height / $width) * self::MAX_LOGO_SIZE);
} else {
- $logoWidth = (int) (($width / $height) * self::MAX_LOGO_SIZE);
+ $logoWidth = (int)(($width / $height) * self::MAX_LOGO_SIZE);
$logoHeight = self::MAX_LOGO_SIZE;
}
} else {
diff --git a/lib/private/Mail/Provider/Manager.php b/lib/private/Mail/Provider/Manager.php
index 244aa86d68d..14ffeac287b 100644
--- a/lib/private/Mail/Provider/Manager.php
+++ b/lib/private/Mail/Provider/Manager.php
@@ -60,7 +60,7 @@ class Manager implements IManager {
*
* @since 30.0.0
*
- * @return array<string,string> collection of provider id and label ['jmap' => 'JMap Connector']
+ * @return array<string,string> collection of provider id and label ['jmap' => 'JMap Connector']
*/
public function types(): array {
@@ -80,7 +80,7 @@ class Manager implements IManager {
*
* @since 30.0.0
*
- * @return array<string,IProvider> collection of provider id and object ['jmap' => IProviderObject]
+ * @return array<string,IProvider> collection of provider id and object ['jmap' => IProviderObject]
*/
public function providers(): array {
@@ -121,11 +121,11 @@ class Manager implements IManager {
*
* @since 30.0.0
*
- * @param string $providerId provider id
+ * @param string $providerId provider id
*
* @return IProvider|null
*/
- public function findProviderById(string $providerId): IProvider | null {
+ public function findProviderById(string $providerId): IProvider|null {
// evaluate if we already have a cached collection of providers
if (!is_array($this->providersCollection)) {
@@ -145,9 +145,9 @@ class Manager implements IManager {
*
* @since 30.0.0
*
- * @param string $userId user id
+ * @param string $userId user id
*
- * @return array<string,array<string,IService>> collection of provider id, service id and object ['jmap' => ['Service1' => IServiceObject]]
+ * @return array<string,array<string,IService>> collection of provider id, service id and object ['jmap' => ['Service1' => IServiceObject]]
*/
public function services(string $userId): array {
@@ -172,13 +172,13 @@ class Manager implements IManager {
*
* @since 30.0.0
*
- * @param string $userId user id
- * @param string $serviceId service id
- * @param string $providerId provider id
+ * @param string $userId user id
+ * @param string $serviceId service id
+ * @param string $providerId provider id
*
- * @return IService|null returns service object or null if none found
+ * @return IService|null returns service object or null if none found
*/
- public function findServiceById(string $userId, string $serviceId, ?string $providerId = null): IService | null {
+ public function findServiceById(string $userId, string $serviceId, ?string $providerId = null): IService|null {
// evaluate if provider id was specified
if ($providerId !== null) {
@@ -216,13 +216,13 @@ class Manager implements IManager {
*
* @since 30.0.0
*
- * @param string $userId user id
- * @param string $address mail address (e.g. test@example.com)
- * @param string $providerId provider id
+ * @param string $userId user id
+ * @param string $address mail address (e.g. test@example.com)
+ * @param string $providerId provider id
*
- * @return IService|null returns service object or null if none found
+ * @return IService|null returns service object or null if none found
*/
- public function findServiceByAddress(string $userId, string $address, ?string $providerId = null): IService | null {
+ public function findServiceByAddress(string $userId, string $address, ?string $providerId = null): IService|null {
// evaluate if provider id was specified
if ($providerId !== null) {