Skip to content

Commit d0ec8f2

Browse files
committed
Fixed checkstyle
1 parent 80026ae commit d0ec8f2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/batch-doctrine-dbal/src/DoctrineDBALJobExecutionStorage.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,11 @@ public function setup(): void
6363
{
6464
$assetFilter = $this->connection->getConfiguration()->getSchemaAssetsFilter()
6565
?? fn() => true;
66-
$this->connection->getConfiguration()->setSchemaAssetsFilter(
67-
function (string|AbstractAsset $table) {
68-
$table = $table instanceof AbstractAsset ? $table->getName() : $table;
66+
$this->connection->getConfiguration()->setSchemaAssetsFilter(function (string|AbstractAsset $table) {
67+
$table = $table instanceof AbstractAsset ? $table->getName() : $table;
6968

70-
return $table === $this->table;
71-
},
72-
);
69+
return $table === $this->table;
70+
});
7371

7472
$schemaManager = \method_exists($this->connection, 'createSchemaManager')
7573
? $this->connection->createSchemaManager()

src/batch-symfony-messenger/src/MessengerJobsConfiguration.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
final class MessengerJobsConfiguration
1111
{
1212
public function __construct(
13-
/** @var array<string, string> */
13+
/**
14+
* @var array<string, string>
15+
*/
1416
private array $routing,
1517
) {
1618
}

0 commit comments

Comments
 (0)