1 | <?php |
||
24 | class InboxProvider implements InboxProviderInterface |
||
25 | { |
||
26 | /** |
||
27 | * A thread repository instance. |
||
28 | * |
||
29 | * @var ThreadRepositoryInterface |
||
30 | */ |
||
31 | protected $threadRepository; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | * |
||
36 | * @param ThreadRepositoryInterface $threadRepository A threadRepository instance |
||
37 | */ |
||
38 | public function __construct(ThreadRepositoryInterface $threadRepository) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function getInboxThreads(ParticipantInterface $participant) |
||
50 | } |
||
51 |