Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OJS][main] #7505 Add repo to pkp-lib #4128

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions classes/facades/Repo.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
use APP\user\Repository as UserRepository;
use PKP\facades\Repo as BaseRepo;
use PKP\galley\Repository as GalleyRepository;
use PKP\jats\Repository as JatsRepository;
use PKP\submission\reviewAssignment\Repository as ReviewAssignmentRepository;

class Repo extends BaseRepo
Expand Down Expand Up @@ -84,9 +83,4 @@ public static function reviewAssignment(): ReviewAssignmentRepository
{
return app(ReviewAssignmentRepository::class);
}

public static function jats(): JatsRepository
{
return app(JatsRepository::class);
}
}