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 trialSiddhant Mehta
Courses Plus Student 478 PointsWhat i am doing wrong here ?
Bummer! The detailsKitchen method should return "Kitchen Dimensions: length x width".
<?php
class Render {
public static function displayDimensions($size)
{
return $size[0]." x ".$size[1];
}
public static function detailsKitchen($room)
{
return "Kitchen Dimesions:".self::displayDimensions($room->getDimensions());
}
}
?>
2 Answers
Jaro Schwab
8,957 PointsYou have a typo in the return value of the detailsKitchen Method.
<?php
class Render {
public static function displayDimensions($size)
{
return $size[0]." x ".$size[1];
}
public static function detailsKitchen($room)
{
// Dimensions not Dimesions
return "Kitchen Dimensions: ".self::displayDimensions($room->getDimensions());
}
}
?>
Cindy Lea
Courses Plus Student 6,497 PointsYou have a couple of things different from the way I have it:
<?php
class Render {
public static function displayDimensions($size) {
return $size[0].' x '. $size[1];
}
}
echo Render::displayDimensions($size);
?>