24 lines
513 B
PHP
24 lines
513 B
PHP
<?php
|
|
|
|
/**
|
|
* @file controllers/grid/users/reviewer/AuthorReviewerGridRow.php
|
|
*
|
|
* Copyright (c) 2014-2021 Simon Fraser University
|
|
* Copyright (c) 2000-2021 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* @class AuthorReviewerGridRow
|
|
*
|
|
* @ingroup controllers_grid_users_reviewer
|
|
*
|
|
* @brief Reviewer grid row definition
|
|
*/
|
|
|
|
namespace PKP\controllers\grid\users\reviewer;
|
|
|
|
use PKP\controllers\grid\GridRow;
|
|
|
|
class AuthorReviewerGridRow extends GridRow
|
|
{
|
|
}
|