Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Object-Oriented PHP Basics (Retired) Inheritance, Interfaces, and Exceptions Final Challenge

Anthony Weber
Anthony Weber
3,913 Points

On the PHP OO stage 3 challenge task 6, not sure why the code I'm using doesn't pass, it works on my PHP web server.

Here is the code i'm using:

   function getInfo() {
    return $this->species . " " . $this->common_name . "tastes" . $this->flavor . ". " . 
      "The record" . $this->species . $this->name . "weighed" . $this->record_weight . ".";
        }

2 Answers

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Anthony;

I would try something along the lines of the following for Task 6:

public function getInfo() {
        $output  = "The {$this->common_name} is an awesome fish. ";
        $output .= "It is very {$this->flavor} when eaten. ";
        $output .= "Currently the world record {$this->common_name} weighed {$this->record_weight}.";
        return $output;
    }

Happy coding,

Ken

Anthony Weber
Anthony Weber
3,913 Points

Thanks Ken, completed successful this time.