Comment convertir la chaîne en int dans Laravel Function Event

$num = "3.14";
$int = (int)$num;
$float = (float)$num;
Mohamad