<?php
namespace ConcreteCoreUserGroup;
use SymfonyComponentEventDispatcherEvent as AbstractEvent;
class Event extends AbstractEvent {
protected $g;
public function __construct(Group $g) {
$this->g = $g;
}
public function getGroupObject() {
return $this->g;
}
}