Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Craig

Craig

Craig has asked 0 questions and find answers to 2 problems.

Stats

30
EtPoint
6
Vote count
0
questions
2
answers

About

class Developer {
    function says() {
        return "Happy to be here";
    }
}
$craig = new Developer();
echo $craig->says();

"Happy to be here."