for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Faulancer\Event;
/**
* Class AbstractEvent
* @package Faulancer\Event
* @author Florian Knapp <[email protected]>
*/
abstract class AbstractEvent
{
const NAME = '';
/** @var \stdClass */
protected $currentInstance;
* AbstractEventType constructor.
*
* @param $currentInstance
public function __construct($currentInstance)
$this->currentInstance = $currentInstance;
}
* @return \stdClass
public function getCurrentInstance()
return $this->currentInstance;