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) Properties and Methods Mid-Course Challenge

Fatal error: Cannot access empty property in fish.php on line 21

I have error , but i don't know why ?

fish.php
<?php 

class Fish 
{
  //**Properties
  public  $common_name;
  public  $flavor;
  public  $record_weight;

  function __construct($name,$flavor,$record)
  {
     $this->common_name=$name;
     $this->flavor=$flavor;
     $this->record_weight=$record;

  }
  //. $this->flavor ."flavored fish." . "The world record weight is " . $this->$record_weight;
  //**public method getInfo
  public function getInfo()
  {
    echo $this->common_name . $this->flavor ."flavored fish." . "The world record weight is " . $this->$record_weight;
  }


}//end of class

$bass=new Fish( "Largemouth Bass", "Excellent","22 pounds 5 ounces");
//$bass->getInfo();

?>

3 Answers

Also if you want to pass the code challenge, then you have to read the question again. You are using echo while they ask to use return, also you are missing parts of the text.

<?php

public function getInfo()
  {
    return "A " . $this->common_name . " is an " . $this->flavor . " flavored fish. The world record weight is " . $this->record_weight . ".";
  }

?

There's an extra dollar sign in your code (record_weight), try this

echo $this->common_name . $this->flavor ."flavored fish." . "The world record weight is " . $this->record_weight;

not it does not work with me ,still the problem is there ...

I'm sure your fatal error goes away if you replace that one line with my answer, but it doesn't solve the challenge yet.