Ojs\ApiBundle\Controller\Journal\JournalIssueRestController::getIssueAction PHP Метод

getIssueAction() публичный Метод

Get single Issue.
public getIssueAction ( integer $id ) : array
$id integer the Issue id
Результат array
    public function getIssueAction($id)
    {
        $journal = $this->get('ojs.journal_service')->getSelectedJournal();
        if (!$this->isGranted('VIEW', $journal, 'issues')) {
            throw new AccessDeniedException();
        }
        $entity = $this->getOr404($id, true);
        return $entity;
    }