Skip to content

Commit ff8107c

Browse files
committed
lints
1 parent 71f0cd2 commit ff8107c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Integration/IntegrationConfigurator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function __invoke(array $defaultIntegrations): array
7171

7272
$integrations = [];
7373
/** @var IntegrationInterface[] $userIntegrations */
74-
$userIntegrations = \is_array($this->userConfig) ? $this->userConfig : [];
74+
$userIntegrations = $this->userConfig;
7575
$userIntegrationsClasses = array_map('get_class', $userIntegrations);
7676
$pickedIntegrationsClasses = [];
7777

tests/End2End/IntegrationsCallbacksEnd2EndTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ public function testInvokableServiceCallback(): void
2525
$kernel->boot();
2626

2727
/**
28-
* @var $hub HubInterface
28+
* @var HubInterface $hub
2929
*/
3030
$hub = $kernel->getContainer()->get('test.hub');
3131
/**
32-
* @var $client Client
32+
* @var Client $client
3333
*/
3434
$client = $hub->getClient();
3535

@@ -48,11 +48,11 @@ public function testFactoryServiceCallback(): void
4848
$kernel->boot();
4949

5050
/**
51-
* @var $hub HubInterface
51+
* @var HubInterface $hub
5252
*/
5353
$hub = $kernel->getContainer()->get('test.hub');
5454
/**
55-
* @var $client Client
55+
* @var Client $client
5656
*/
5757
$client = $hub->getClient();
5858

0 commit comments

Comments
 (0)