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 Designing Interfaces in PHP Introducing Interfaces Implement MySQL RepositoryInterface

Sebastian Pikand
Sebastian Pikand
13,987 Points

Stuck with extending PDO (php interfaces course)

Stuck... Commented out stuff I have tried so far.

sqlRepository.php
<?php
class sqlRepository extends PDO implements RepositoryInterface
{

  public function all($table) {
     $result = parent::prepare($table);
    /*$result = this::prepare($table);*/
    $result->execute();
      return $results->fetchAll();
    /*$sql = "SELECT * FROM $table";
    $results = new PDO;
    $var = $results->prepare($table);
    $var->execute;
    return $var->fetchAll(PDO::FETCH_OBJ);*/
  }

}

1 Answer

David Evans
David Evans
10,490 Points

Hi Sebastian, I had issues with this one as well.

I eventually solved it with the following code ( View the answer on that question ) : https://teamtreehouse.com/community/stuck-on-challenge-for-implementing-interfaces