Skip to content

Commit

Permalink
pkp/pkp-lib#7725 editorial decision constants synced up
Browse files Browse the repository at this point in the history
  • Loading branch information
touhidurabir committed Aug 29, 2022
1 parent 91d0191 commit fa8b54d
Show file tree
Hide file tree
Showing 20 changed files with 286 additions and 74 deletions.
58 changes: 0 additions & 58 deletions classes/decision/Decision.php

This file was deleted.

1 change: 1 addition & 0 deletions classes/decision/Repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
use APP\decision\types\SkipInternalReview;
use APP\notification\Notification;
use Illuminate\Database\Eloquent\Collection;
use PKP\decision\Decision;
use PKP\decision\types\Accept;
use PKP\decision\types\BackFromCopyediting;
use PKP\decision\types\BackFromProduction;
Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/AcceptFromInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\Accept;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/CancelInternalReviewRound.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use APP\submission\Submission;
use PKP\db\DAORegistry;
Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/DeclineInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\Decline;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/NewInternalReviewRound.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\NewExternalReviewRound;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/RecommendAcceptInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\RecommendAccept;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/RecommendDeclineInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\RecommendDecline;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/RecommendResubmitInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\RecommendResubmit;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/RecommendRevisionsInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\RecommendRevisions;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/RecommendSendExternalReview.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use APP\submission\Submission;
use PKP\decision\DecisionType;
Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/RequestRevisionsInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\RequestRevisions;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/ResubmitInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\Resubmit;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/RevertDeclineInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\decision\types\traits\InInternalReviewRound;
use PKP\decision\types\RevertDecline;

Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/SendInternalReview.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use APP\facades\Repo;
use APP\mail\mailables\DecisionSendInternalReviewNotifyAuthor;
use APP\submission\Submission;
Expand Down
2 changes: 1 addition & 1 deletion classes/decision/types/SkipInternalReview.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace APP\decision\types;

use APP\decision\Decision;
use PKP\decision\Decision;
use PKP\decision\types\SendExternalReview;

class SkipInternalReview extends SendExternalReview
Expand Down
Loading

0 comments on commit fa8b54d

Please sign in to comment.