Sulu\Bundle\ContactBundle\Behat\ContactContext::theEmailTypeExists PHP Метод

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

public theEmailTypeExists ( $type )
    public function theEmailTypeExists($type)
    {
        $emailType = new EmailType();
        $emailType->setId(self::$emailTypeId);
        self::$emailTypeId += 1;
        $emailType->setName($type);
        $this->getEntityManager()->persist($emailType);
        $this->getEntityManager()->flush();
    }