for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: olive
* Date: 12/03/2017
* Time: 12:36
*/
namespace eXpansion\Framework\Core\Model;
* Class ProviderListner
*
* @package eXpansion\Framework\Core\Model
class ProviderListner
{
/** @var string */
protected $eventName;
protected $provider;
protected $method;
* ProviderListner constructor.
* @param string $eventName
* @param string $provider
* @param string $method
public function __construct($eventName, $provider, $method)
$this->eventName = $eventName;
$this->provider = $provider;
$this->method = $method;
}
* @return mixed
public function getEventName()
return $this->eventName;
* @param mixed $eventName
public function setEventName($eventName)
public function getProvider()
return $this->provider;
* @param mixed $provider
public function setProvider($provider)
public function getMethod()
return $this->method;
* @param mixed $method
public function setMethod($method)