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 SortNavigation
*
* @link http://pyrocms.com/
* @author PyroCMS, Inc. <[email protected]>
* @author Ryan Thompson <[email protected]>
*/
class SortNavigation
{
* The control panel builder.
* @var ControlPanelBuilder
protected $builder;
* Create a new SortNavigation 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;