in testData/completion/ArrayShapeNestedForeach.php [19:28]
function foo(array $notificationGroup)
{
foreach ($notificationGroup as $notificationsAndObjects) {
foreach ($notificationsAndObjects['notifications'] as $notification) {
foreach ($notification['title']['key'] as $n) {
$n['<caret>'];
}
}
}
}