Exemplo n.º 1
0
 /**
  * Set path.
  *
  * @param \Innova\PathBundle\Entity\Path\Path $path
  *
  * @return \Innova\PathBundle\Entity\
  */
 public function setPath(Path\Path $path = null)
 {
     $this->path = $path;
     if (!empty($path)) {
         $path->addStep($this);
     }
     return $this;
 }