My bad, never feed a grep after midnight

So that's what I can find. I don't understand how that's called for the other entities. To be sure it's always called, shouldn't we move it to the DAO ?
CRM/Core/BAO/Tag.php: CRM_Utils_Hook::post( 'delete', 'Tag', $id, $tag );
CRM/Core/BAO/Tag.php: CRM_Utils_Hook::post( 'edit', 'Tag', $tag->id, $tag );
CRM/Core/BAO/Tag.php: CRM_Utils_Hook::post( 'create', 'Tag', null, $tag );
CRM/Core/BAO/EntityTag.php: CRM_Utils_Hook::post('create', 'EntityTag', $tagId, $object );
CRM/Core/BAO/EntityTag.php: CRM_Utils_Hook::post( 'delete', 'EntityTag', $tagId, $object );
...
I'm asking because CaseActivity doesn't trigger the hook call, I'm assuming that's a bug, I'll fill an issue.