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 Building the Recipe Static

Alfredo Prince
Alfredo Prince
6,175 Points

What's wrong with this code? Why can't I use $room as an array?

Help me a little bit with this final task. Am I going for a good route? What should I do ? Please help me understand this a little more.

index.php
<?php

class Render {

  public static function displayDimensions($size)
  {
    return $size[0] . " x " . $size[1];
  }

  public static function getDimensions($room)
  {
    return $size->room;
  }

    public static function detailsKitchen($room)
    {
     return "Kitchen Dimensions: " . $room[0]->displayDimensions. "x" . $room[1]->displayDimensions;

    }
}

?>

2 Answers

Bryan Manhollan
PLUS
Bryan Manhollan
Courses Plus Student 7,863 Points

Been a long time since I did php. But I think your issue is where you return to room.

return $size->room

should be return $size->$room

Alfredo Prince
Alfredo Prince
6,175 Points

Thank you! I tried your solution but it's still marking an error here on line 17: Uncaught Error: Cannot use object of type Room as array in index.php:17

Bryan Manhollan
PLUS
Bryan Manhollan
Courses Plus Student 7,863 Points

Spacing is wrong.

<?php

class Render {

  public static function displayDimensions($size)
  {
    return $size[0] . " x " . $size[1];
  }

  public static function getDimensions($room)
  {
    return $size->room;
  }

  public static function detailsKitchen($room)
  {
    return "Kitchen Dimensions: " . $room[0]->displayDimensions. "x" . $room[1]->displayDimensions;

  }
}

?>