PHP-Code in building_superheroes/01_step/class/FirstExample.class.php

<?php
class FirstExample {
    function sayHello() {
        $str = "Hello World";
        return $str;
    }
}
?>