Skip to content

Commit

Permalink
Fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinloiseau committed May 5, 2020
1 parent ee74d45 commit 5fa3cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VersionsCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function checkPackages(ArrayRepository $distRepository, WritableRepositor
}

// Sub dependencies are ignored and package is not require in root. Skip.
if ($ignoreSubDependencies && !in_array($package->getName(), $rootRequires, true)) {
if ($ignoreSubDependencies && !\in_array($package->getName(), $rootRequires, true)) {
continue;
}

Expand Down

0 comments on commit 5fa3cc6

Please sign in to comment.