Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function setUp() |
||
41 | { |
||
42 | $this->threadRepository = $this->getMock('Miliooo\Messaging\Repository\ThreadRepositoryInterface'); |
||
43 | $this->deleteThreadManager = new DeleteThreadManager($this->threadRepository); |
||
44 | $this->thread = $this->getMock('Miliooo\Messaging\Model\ThreadInterface'); |
||
45 | } |
||
46 | |||
60 |