for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the BreadcrumbsBundle.
*
* (c) Yonel Ceruto <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Yceruto\Bundle\BreadcrumbsBundle;
class BreadcrumbsNode
{
/**
* @var string
private $path;
private $label;
* BreadcrumbsNode constructor.
* @param string $path
* @param string $label
public function __construct($path = null, $label = null)
$this->path = $path;
$this->label = $label;
}
* @return string
public function getPath()
return $this->path;
* @return BreadcrumbsNode
public function setPath($path)
return $this;
public function getLabel()
return $this->label;
public function setLabel($label)
public function __toString()