Sorry, in my case I don’t need the data object, but maybe someone else does, so the default data value need to be an empty object instead of an empty array.
Like this:
// prepare data
$data = array(
'to' => $tokens,
'sound' => 'default',
'title' => $notif->post_title,
'body' => $notif->post_content,
'data' => (object) array(),
);