Ojs\ApiBundle\Handler\JournalArticleFileHandler::all PHP Метод

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

Get a list of ArticleFiles.
public all ( integer $limit = 5, integer $offset ) : array
$limit integer the limit of the result
$offset integer starting from the offset
Результат array
    public function all($limit = 5, $offset = 0)
    {
        return $this->repository->findBy(['article' => $this->getArticle()], null, $limit, $offset);
    }