Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump nextcloud/coding-standard from 1.2.1 to 1.2.3 in /vendor-bin/cs-fixer #47464

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@

# Update to coding-standard 1.2.3
af6de04e9e141466dc229e444ff3f146f4a34765
0bd284cb81b6866338aaaa67aa1d81ef9bfbb2ab
18 changes: 9 additions & 9 deletions lib/public/Mail/Provider/IMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function setFrom(IAddress $value): self;
*
* @since 30.0.0
*
* @return IAddress|null sender's mail address object
* @return IAddress|null sender's mail address object
*/
public function getFrom(): IAddress|null;

Expand All @@ -63,7 +63,7 @@ public function setReplyTo(IAddress $value): self;
*
* @since 30.0.0
*
* @return IAddress|null sender's reply to mail address object
* @return IAddress|null sender's reply to mail address object
*/
public function getReplyTo(): IAddress|null;

Expand All @@ -83,7 +83,7 @@ public function setTo(IAddress ...$value): self;
*
* @since 30.0.0
*
* @return array<int,IAddress> collection of all recipient mail address objects
* @return array<int,IAddress> collection of all recipient mail address objects
*/
public function getTo(): array;

Expand All @@ -103,7 +103,7 @@ public function setCc(IAddress ...$value): self;
*
* @since 30.0.0
*
* @return array<int,IAddress> collection of all copied recipient mail address objects
* @return array<int,IAddress> collection of all copied recipient mail address objects
*/
public function getCc(): array;

Expand All @@ -123,7 +123,7 @@ public function setBcc(IAddress ...$value): self;
*
* @since 30.0.0
*
* @return array<int,IAddress> collection of all blind copied recipient mail address objects
* @return array<int,IAddress> collection of all blind copied recipient mail address objects
*/
public function getBcc(): array;

Expand All @@ -143,7 +143,7 @@ public function setSubject(string $value): self;
*
* @since 30.0.0
*
* @return string|null subject of message or null if one is not set
* @return string|null subject of message or null if one is not set
*/
public function getSubject(): string|null;

Expand All @@ -166,7 +166,7 @@ public function setBody(string $value, bool $html): self;
*
* @since 30.0.0
*
* @return string|null html/plain body of this message or null if one is not set
* @return string|null html/plain body of this message or null if one is not set
*/
public function getBody(): string|null;

Expand All @@ -186,7 +186,7 @@ public function setBodyHtml(string $value): self;
*
* @since 30.0.0
*
* @return string|null html body of this message or null if one is not set
* @return string|null html body of this message or null if one is not set
*/
public function getBodyHtml(): string|null;

Expand All @@ -206,7 +206,7 @@ public function setBodyPlain(string $value): self;
*
* @since 30.0.0
*
* @return string|null plain text body of this message or null if one is not set
* @return string|null plain text body of this message or null if one is not set
*/
public function getBodyPlain(): string|null;

Expand Down
18 changes: 9 additions & 9 deletions lib/public/Mail/Provider/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function setFrom(IAddress $value): self {
*
* @since 30.0.0
*
* @return IAddress|null sender's mail address object
* @return IAddress|null sender's mail address object
*/
public function getFrom(): IAddress|null {
// evaluate if data store field exists and return value(s) or null otherwise
Expand Down Expand Up @@ -91,7 +91,7 @@ public function setReplyTo(IAddress $value): self {
*
* @since 30.0.0
*
* @return IAddress|null sender's reply to mail address object
* @return IAddress|null sender's reply to mail address object
*/
public function getReplyTo(): IAddress|null {
// evaluate if data store field exists and return value(s) or null otherwise
Expand Down Expand Up @@ -119,7 +119,7 @@ public function setTo(IAddress ...$value): self {
*
* @since 30.0.0
*
* @return array<int,IAddress> collection of all recipient mail address objects
* @return array<int,IAddress> collection of all recipient mail address objects
*/
public function getTo(): array {
// evaluate if data store field exists and return value(s) or empty collection
Expand Down Expand Up @@ -147,7 +147,7 @@ public function setCc(IAddress ...$value): self {
*
* @since 30.0.0
*
* @return array<int,IAddress> collection of all copied recipient mail address objects
* @return array<int,IAddress> collection of all copied recipient mail address objects
*/
public function getCc(): array {
// evaluate if data store field exists and return value(s) or empty collection
Expand Down Expand Up @@ -175,7 +175,7 @@ public function setBcc(IAddress ...$value): self {
*
* @since 30.0.0
*
* @return array<int,IAddress> collection of all blind copied recipient mail address objects
* @return array<int,IAddress> collection of all blind copied recipient mail address objects
*/
public function getBcc(): array {
// evaluate if data store field exists and return value(s) or empty collection
Expand Down Expand Up @@ -203,7 +203,7 @@ public function setSubject(string $value): self {
*
* @since 30.0.0
*
* @return string|null subject of message or null if one is not set
* @return string|null subject of message or null if one is not set
*/
public function getSubject(): string|null {
// evaluate if data store field exists and return value(s) or null otherwise
Expand Down Expand Up @@ -238,7 +238,7 @@ public function setBody(string $value, bool $html = false): self {
*
* @since 30.0.0
*
* @return string|null html/plain body of this message or null if one is not set
* @return string|null html/plain body of this message or null if one is not set
*/
public function getBody(): string|null {
// evaluate if data store field(s) exists and return value
Expand Down Expand Up @@ -272,7 +272,7 @@ public function setBodyHtml(string $value): self {
*
* @since 30.0.0
*
* @return string|null html body of this message or null if one is not set
* @return string|null html body of this message or null if one is not set
*/
public function getBodyHtml(): string|null {
// evaluate if data store field exists and return value(s) or null otherwise
Expand Down Expand Up @@ -300,7 +300,7 @@ public function setBodyPlain(string $value): self {
*
* @since 30.0.0
*
* @return string|null plain text body of this message or null if one is not set
* @return string|null plain text body of this message or null if one is not set
*/
public function getBodyPlain(): string|null {
// evaluate if data store field exists and return value(s) or null otherwise
Expand Down
24 changes: 12 additions & 12 deletions vendor-bin/cs-fixer/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading