for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Markus Tacker <[email protected]>
* @copyright 2013-2016 Verein zur Förderung der Netzkultur im Rhein-Main-Gebiet e.V. | http://netzkultur-rheinmain.de/
*/
namespace BCRM\WebBundle\Content;
class Nav
{
* @var string
protected $title;
protected $path;
* @return string
public function getPath()
return $this->path;
}
* @param string $path
public function setPath($path)
$this->path = $path;
public function getTitle()
return $this->title;
* @param string $title
public function setTitle($title)
$this->title = $title;