forked from pkp/ops
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkp/pkp-lib#7725 editorial decision constants synced up
- Loading branch information
1 parent
3db3d6c
commit 4842fc1
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
/** | ||
* @defgroup decision Decision | ||
*/ | ||
|
||
/** | ||
* @file classes/decision/Decision.inc.php | ||
* | ||
* Copyright (c) 2014-2022 Simon Fraser University | ||
* Copyright (c) 2000-2022 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* @class Decision | ||
* @ingroup decision | ||
* | ||
* @see DAO | ||
* | ||
* @brief An editorial decision taken on a submission, such as to accept, decline or request revisions. | ||
*/ | ||
|
||
namespace APP\decision; | ||
|
||
use PKP\decision\Decision as BaseDecision; | ||
|
||
class Decision extends BaseDecision | ||
{ | ||
|
||
} |