for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Bundle\AdminBundle\Event;
use Knp\Menu\FactoryInterface;
use Knp\Menu\ItemInterface;
use Sylius\Bundle\UiBundle\Menu\Event\MenuBuilderEvent;
use Sylius\Component\Core\Model\CustomerInterface;
/**
* @author Grzegorz Sadowski <[email protected]>
class CustomerShowMenuBuilderEvent extends MenuBuilderEvent
{
* @var CustomerInterface
private $customer;
* @param FactoryInterface $factory
* @param ItemInterface $menu
* @param CustomerInterface $customer
public function __construct(FactoryInterface $factory, ItemInterface $menu, CustomerInterface $customer)
parent::__construct($factory, $menu);
$this->customer = $customer;
}
* @return CustomerInterface
public function getCustomer()
return $this->customer;