Ojs\JournalBundle\Entity\PublisherTypes::getId PHP Method

getId() public method

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

Usage Example

Ejemplo n.º 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;
 }