how insert method in class from another file? Now i get error:
`T_FUNCTION' in C:\wamp\www\index.php on line 9
    index.php file:
    <?php
    class cars
    {
        public function go()
        {
            echo 'go go';
        }    
        include('stop.php');
    }
    $c = new cars;
    $c->go();
    ?>
    stop.php file
    <?php
    public function stop()
    {
        echo 'stop method';
    }
?>