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 trialisraelmaykut
8,730 Pointscorresponding parameter variable
I am not getting this quiz. Assign each of the properties of the Fish class with its corresponding parameter variable.
I added lines 9,10,11 but this doesn't seem to work.
<?php
class Fish {
public $common_name;
public $flavor;
public $record_weight;
function __construct($name,$flavor,$record){
$this->name = $name;
$this->flavor = $flavor;
$this->record = $record;
}
?>
2 Answers
Ryan Field
Courses Plus Student 21,242 PointsHi, Israel. You're very close. You need to make sure your public
variable names match up with those inside your constructor (such as $this->variable
). So, if you had public $new_variable
, your constructor also has to use $this->new_variable
.
STEVE NODINE
2,910 Pointsclass Fish { public $common_name; public $flavor; public $record_weight; public function __construct($name, $flavor, $record){ $this->name = $name; $this->flavor= $flavor; $this->record = $record; } }