Hello, and welcome to PHPBuilder. Please read what Sneakyimp said above.
I get the following error
Object of class Television could not be converted to string in C:\wamp\www\Learn\chapter8\interface.php on line 83
Typically, this happens when you to try print() an object, or use any function that expects a string argument using an object as the argument.
I'm not sure what's up, but you might first try removing "Sellable" from this:
public function addProduct(Sellable $product)
... and then see if the same error results.
Even if you're just copy/pasting your scripts, which I don't recommend, you should take the time to learn some basic PHP. "Sellable" isn't part of the language (and a simple visit to php.net would've confirmed this.