Ojs\ApiBundle\Handler\JournalIssueFileHandler::all PHP Method

all() public method

Get a list of IssueFiles.
public all ( integer $limit = 5, integer $offset ) : array
$limit integer the limit of the result
$offset integer starting from the offset
return array
    public function all($limit = 5, $offset = 0)
    {
        return $this->repository->findBy(['issue' => $this->getIssue()], null, $limit, $offset);
    }