Skip to content

Commit f9134f2

Browse files
Fix CS
1 parent c9d2677 commit f9134f2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/DependencyResolver/Package.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@
1010
use Php\Pie\ExtensionName;
1111
use Php\Pie\ExtensionType;
1212
use Php\Pie\Platform\OperatingSystemFamily;
13-
1413
use Webmozart\Assert\Assert;
14+
1515
use function array_key_exists;
1616
use function array_map;
1717
use function array_slice;
1818
use function explode;
1919
use function implode;
2020
use function parse_url;
21-
use function sprintf;
2221
use function str_contains;
2322
use function str_starts_with;
2423
use function strtolower;
@@ -75,7 +74,7 @@ public static function fromComposerCompletePackage(CompletePackageInterface $com
7574
? $phpExtOptions['build-path']
7675
: null;
7776

78-
$compatibleOsFamilies = $phpExtOptions['os-families'] ?? null;
77+
$compatibleOsFamilies = $phpExtOptions['os-families'] ?? null;
7978
$incompatibleOsFamilies = $phpExtOptions['os-families-exclude'] ?? null;
8079

8180
if ($compatibleOsFamilies !== null && $incompatibleOsFamilies !== null) {

0 commit comments

Comments
 (0)