<?php
namespace ConcreteCoreJob;
use SymfonyComponentEventDispatcherEvent as AbstractEvent;
class Event extends AbstractEvent {
protected $j;
public function __construct(Job $j) {
$this->j = $j;
}
public function getJobObject() {
return $this->j;
}
}