Ojs\ApiBundle\Handler\JournalHandler::post PHP 메소드

post() 공개 메소드

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