Skip to content

Commit efd2a59

Browse files
committed
ECS: add declare(strict_types=1) to the dependency-analyser config
The newer ECS run on CI enforces strict_types on this root config file (the local lock's ECS did not flag it); surfaced because this PR edits the file.
1 parent 0ae53b0 commit efd2a59

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

composer-dependency-analyser.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use ShipMonk\ComposerDependencyAnalyser\Config\Configuration;
46
use ShipMonk\ComposerDependencyAnalyser\Config\ErrorType;
57

@@ -12,4 +14,4 @@
1214
// ignore is a no-op there, which is why unmatched-ignore reporting is disabled).
1315
->ignoreUnknownClasses(['XmlWriter', 'LOCALE'])
1416
->disableReportingUnmatchedIgnores()
15-
;
17+
;

0 commit comments

Comments
 (0)