for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Anomaly\Streams\Platform\Ui\ControlPanel\Component\Navigation\Event;
use Anomaly\Streams\Platform\Ui\ControlPanel\ControlPanelBuilder;
/**
* Class GatherNavigation
*
* @link http://pyrocms.com/
* @author PyroCMS, Inc. <[email protected]>
* @author Ryan Thompson <[email protected]>
*/
class GatherNavigation
{
* The control panel builder.
* @var ControlPanelBuilder
protected $builder;
* Create a new GatherNavigation instance.
* @param ControlPanelBuilder $builder
public function __construct(ControlPanelBuilder $builder)
$this->builder = $builder;
}
* Get the control panel builder.
* @return ControlPanelBuilder
public function getBuilder()
return $this->builder;