Skip to content

Commit

Permalink
Oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek committed Jan 8, 2024
1 parent 584a81a commit f1c5a5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Entity/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,12 +300,12 @@ public function getGitLabComponents(): array|null

public function isGitHub(): bool
{
return (bool) $this->isGitHub();
return (bool) $this->getGitHubComponents();
}

public function isGitLab(): bool
{
return (bool) $this->isGitLab();
return (bool) $this->getGitLabComponents();
}

/**
Expand Down

0 comments on commit f1c5a5a

Please sign in to comment.