Skip to content

Commit 7797702

Browse files
committed
Fix CS
1 parent 1cbc4c5 commit 7797702

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Attribute/AutowireCollection.php

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
use Symfony\Component\DependencyInjection\Reference;
3535

3636
use function is_string;
37-
use function ltrim;
3837
use function sprintf;
3938

4039
/**

tests/Functional/DataCollector/DriverEventSubscriberTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function collectCommandEvent(int $clientId, string $requestId, array $dat
3131
}
3232
};
3333

34-
$this->stopwatch = new Stopwatch();;
34+
$this->stopwatch = new Stopwatch();
3535
}
3636

3737
public function testCommandSucceeded(): void

tests/Unit/Attribute/AttributeTestCase.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace MongoDB\Bundle\Tests\Unit\Attribute;
46

57
use Generator;

0 commit comments

Comments
 (0)