for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : [email protected] */
/* web : http://www.thelia.net */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
namespace Dealer\Event;
use Dealer\Model\DealerContactInfo;
use Symfony\Component\EventDispatcher\Event;
/**
* Class DealerContactInfoEvent
* @package Dealer\Event
*/
class DealerContactInfoEvent extends Event
{
* @var DealerContactInfo
protected $dealer_contact_info;
* @return DealerContactInfo
public function getDealerContactInfo()
return $this->dealer_contact_info;
}
* @param DealerContactInfo $dealer_contact_info
public function setDealerContactInfo($dealer_contact_info)
$this->dealer_contact_info = $dealer_contact_info;