OOP Learning Mode

What will be the output of the following PHP code?

class Checkout
 {
    final function totalize() 
    {
        // calculate bill
    }
 }

class IllegalCheckout extends Checkout 
{
    final function totalize() 
    {
        // change bill calculation
    }
}