Date operations Help

Hi.

Can you help me, how to get the number of days between two dates, in Entity.

$this->dateFinal;
$this->dateInicial;

$numbreOfDays = ?

Thanks.

$this->dateFinal->diffInDays($this->dateInicial)

Manual Reference

Thanks, Just what I need it.