class TitleProvider {
private $title;
public function getTitle() { return $this->title; }
public function setTitle($title) { $this->title = $title;}
}
class Foo {
private $titleProvider;
public function __construct(TitleProvider $titleProvider){
$this->titleProvider;
}
}