Code style.

This commit is contained in:
David Molineus
2015-01-22 13:34:22 +01:00
parent 178da21895
commit 62e2b02732
9 changed files with 35 additions and 15 deletions

View File

@@ -46,7 +46,7 @@ class HashSubscriber implements EventSubscriberInterface
$data = $event->getData();
if ($data instanceof \Model) {
$event->setHash($data->getTable() . '.' . $data->{$data->getPk()});
$event->setHash($data->getTable() . '::' . $data->{$data->getPk()});
}
}