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