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

post() public method

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