Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function setup() |
||
20 | { |
||
21 | $this->id = '1'; |
||
22 | $this->title = 'title'; |
||
23 | |||
24 | $this->from = 'from'; |
||
25 | $this->to = 'to'; |
||
26 | |||
27 | $this->cardHistory = $this->prophesize(HistoryCard::class); |
||
28 | $this->cardHistory->getFrom()->willReturn('from'); |
||
29 | $this->cardHistory->getTo()->willReturn('to'); |
||
30 | |||
31 | $this->cardTime = TimeCard::create($this->id, $this->title); |
||
32 | } |
||
33 | |||
48 | } |