Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
41 | public function checkProcessing(ImportPart $part) |
||
42 | { |
||
43 | if (!$this->isRunning($part)) { |
||
44 | return; |
||
45 | } |
||
46 | |||
47 | throw new RunningPartException( |
||
48 | sprintf( |
||
49 | 'Part %d of import %d is already running by process %d', |
||
50 | $part->getPosition(), |
||
51 | $part->getImport()->getId(), |
||
52 | $part->getProcess() |
||
53 | ) |
||
54 | ); |
||
55 | } |
||
56 | } |
||
57 |