Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | protected function getResource($expects = false) |
||
26 | { |
||
27 | $resource = $this->getMockBuilder('\Maketok\DataMigration\Storage\Db\ResourceInterface') |
||
28 | ->getMock(); |
||
29 | if ($expects) { |
||
30 | $resource->expects($this->atLeastOnce())->method('deleteUsingTempPK'); |
||
31 | } |
||
32 | return $resource; |
||
33 | } |
||
34 | |||
60 |