Knp\Bundle\KnpBundlesBundle\Entity\Bundle::getShortName PHP 메소드

getShortName() 공개 메소드

Get the first part of the name, without Bundle
public getShortName ( ) : string
리턴 string
    public function getShortName()
    {
        return preg_replace('/^(.+)Bundle$/', '$1', $this->getName());
    }