Ojs\JournalBundle\Entity\PublisherTypes::getId PHP 메소드

getId() 공개 메소드

Get id
public getId ( ) : integer
리턴 integer
    public function getId()
    {
        return $this->id;
    }

Usage Example

예제 #1
0
 /**
  * @param  PublisherTypes $publisher_type
  * @return $this
  */
 public function setPublisherType(PublisherTypes $publisher_type)
 {
     $this->publisher_type = $publisher_type;
     $this->setPublisherTypeId($publisher_type->getId());
     return $this;
 }