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 trialColletah Mavunduse
5,414 PointsDefine a constructor on the Fish class with 3 parameters, in order, named $name, $flavor, and $record?
Define a constructor on the Fish class with 3 parameters, in order, named $name, $flavor, and $record.
<?php
class Fish
{
public $common_name='default_name';
public $flavor=0;
public $record_weight='defaullt_weight';
function __construct($name, $flavor, $record){
$this->name = $name;
$this->flavor = $flavor;
$this->record = $record;
}
?>
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Colletah,
Your code is pretty much correct. There is only one syntax error: you forgot your closing curly brace for your constructor function.
Also, though correct in syntax, the challenge won't let you pass because you have added values that were not asked for in your opening declaration of the variables. Delete those... add the curly brace and you're good to go
<?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;
}
}
?>
Keep Coding! :)
Colletah Mavunduse
5,414 PointsColletah Mavunduse
5,414 Pointsthanx got it!!!