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

<?php
class FithExample {
    // Irgend eine Methode
    function saySomethingNice() {
        $str = "I am proud of you!";
        return $str;
    }
}
?>