What does RETURN TRUE do in a php function?

I was just looking at this code and i don't understand what RETURN TRUE does or what the point of it is? Can someone please explain?

class Elephpant {

    public $colour;

    public function dance() {
        echo "elephpant dances!\n";
        return true;
    }
}

Thankyou in advance ;-)