* @param DomainObjectInterface $object
*/
protected function emitAfterInsertObjectSignal(DomainObjectInterface $object) {
- $this->signalSlotDispatcher->dispatch(__CLASS__, 'afterInsertObject', array('object' => $object));
+ $this->signalSlotDispatcher->dispatch(__CLASS__, 'afterInsertObject', array($object));
}
/**
* @param DomainObjectInterface $object
*/
protected function emitAfterUpdateObjectSignal(DomainObjectInterface $object) {
- $this->signalSlotDispatcher->dispatch(__CLASS__, 'afterUpdateObject', array('object' => $object));
+ $this->signalSlotDispatcher->dispatch(__CLASS__, 'afterUpdateObject', array($object));
}
/**
* @param DomainObjectInterface $object
*/
protected function emitAfterRemoveObjectSignal(DomainObjectInterface $object) {
- $this->signalSlotDispatcher->dispatch(__CLASS__, 'afterRemoveObject', array('object' => $object));
+ $this->signalSlotDispatcher->dispatch(__CLASS__, 'afterRemoveObject', array($object));
}
/**