$followRecord = Follow::find([
'userId' => 111,
'onUserId' => 777
])->one();
if($followRecord)
//Удаление
$followRecord = Follow::find(['userId' => 111, 'onUserId' => 777])->one();
if ($followRecord instanceof Follow) {
// запись найдена - удаляем ???
}