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