Skip to content

Commit

Permalink
Merge pull request #35 from sebastianbergmann/master
Browse files Browse the repository at this point in the history
Do not use implicitly nullable parameters
  • Loading branch information
theseer authored Mar 3, 2024
2 parents 6772927 + 38cb02c commit e1da028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/values/Manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function isExtension(): bool {
return $this->type->isExtension();
}

public function isExtensionFor(ApplicationName $application, Version $version = null): bool {
public function isExtensionFor(ApplicationName $application, ?Version $version = null): bool {
if (!$this->isExtension()) {
return false;
}
Expand Down

0 comments on commit e1da028

Please sign in to comment.