Functions Learning Mode

Which type of function call is used in line 8 in the following PHP code?

    <?php
    function calc($price, $tax) 
    {
        $total = $price + $tax;
    }
    $pricetag = 15;
    $taxtag = 3;
    calc($pricetag, $taxtag);   
    ?>