class.car.php

class.car.php

<?php
class Car
{
    function getModel()
    {
        return "jeep";
    }

}
?>

Comments are closed.