Ojs\ApiBundle\Handler\JournalArticleHandler::post PHP Method

post() public method

Create a new Article.
public post ( array $parameters ) : Article
$parameters array
return Ojs\JournalBundle\Entity\Article
    public function post(array $parameters)
    {
        $entity = $this->createArticle();
        return $this->processForm($entity, $parameters, 'POST');
    }