Skip to content

Commit 162e3fc

Browse files
committed
Run CS fix
1 parent aca3864 commit 162e3fc

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

src/Connection/ImapConnection.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ public function connect(string $host, ?int $port = null, array $options = []): v
122122

123123
/**
124124
* Get the default socket options for the given transport.
125-
* @param 'ssl'|'tls'|'starttls'|'tcp' $transport
125+
*
126+
* @param 'ssl'|'tls'|'starttls'|'tcp' $transport
126127
*/
127128
protected function getDefaultSocketOptions(string $transport, array $proxy = [], bool $validateCert = true): array
128129
{
@@ -596,6 +597,7 @@ public function done(): void
596597

597598
/**
598599
* Send an IMAP command.
600+
*
599601
* @param-out string $tag
600602
*/
601603
public function send(string $name, array $tokens = [], ?string &$tag = null): void

src/Connection/ImapQueryBuilder.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,8 @@ protected function parseDate(mixed $date): CarbonInterface
373373

374374
/**
375375
* Build a single expression node from a basic or nested where.
376-
* @param array{type: 'basic'|'nested', boolean: 'AND'|'OR', query: ImapQueryBuilder} $where
376+
*
377+
* @param array{type: 'basic'|'nested', boolean: 'AND'|'OR', query: ImapQueryBuilder} $where
377378
*/
378379
protected function makeExpressionNode(array $where): array
379380
{
@@ -392,7 +393,8 @@ protected function makeExpressionNode(array $where): array
392393

393394
/**
394395
* Merge the existing expression with the next expression, respecting the boolean operator.
395-
* @param 'AND'|'OR' $boolean
396+
*
397+
* @param 'AND'|'OR' $boolean
396398
*/
397399
protected function mergeExpressions(string $existing, string $next, string $boolean): string
398400
{

src/FlaggableInterface.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ public function hasFlag(BackedEnum|string $flag): bool;
120120

121121
/**
122122
* Add or remove a flag from the message.
123-
* @param '+'|'-' $operation
123+
*
124+
* @param '+'|'-' $operation
124125
*/
125126
public function flag(BackedEnum|string $flag, string $operation, bool $expunge = false): void;
126127
}

src/QueriesMessages.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ trait QueriesMessages
4242

4343
/**
4444
* The fetch order.
45-
* @var 'asc'|'desc' $fetchOrder
45+
*
46+
* @var 'asc'|'desc'
4647
*/
4748
protected string $fetchOrder = 'desc';
4849

0 commit comments

Comments
 (0)