Newscoop\Entity\Issue::getName PHP 메소드

getName() 공개 메소드

Get name of the issue
public getName ( ) : string
리턴 string
    public function getName()
    {
        return $this->name;
    }

Usage Example

예제 #1
0
 /**
  * Get name
  *
  * @return string
  */
 public function getName()
 {
     if ($this->subscription->getPublication() === null) {
         return '';
     }
     return $this->issue->getName();
 }
All Usage Examples Of Newscoop\Entity\Issue::getName