*/ class PropelEvent extends ActionEvent { /** @var ActiveRecordInterface */ protected $instance; /** @var mixed */ protected $return; /** * PropelEvent constructor. * @param ActiveRecordInterface $instance */ public function __construct(ActiveRecordInterface $instance) { $this->instance = $instance; } /** * @return ActiveRecordInterface */ public function getInstance() { return $this->instance; } /** * @param ActiveRecordInterface $instance * @return PropelEvent */ public function setInstance($instance) { $this->instance = $instance; return $this; } }