$this inside a function

$this inside a function

Hello !

I have this line of code :

$(this).parent().siblings().hover(function(){$(this).css("border-bottom","4px solid black");},function(){$(this).css("border-bottom","0px solid black");});

Question: $this =    $(this)    or   $(this).parent().siblings()    ?