Passed
Push — master ( 046edc...7f8fa3 )
by Alexander
02:26
created

EntityWriter::write()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
eloc 4
c 1
b 0
f 0
nc 2
nop 1
dl 0
loc 7
ccs 0
cts 5
cp 0
crap 6
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\Cycle\Data\Writer;
6
7
use Cycle\ORM\ORMInterface;
8
use Cycle\ORM\Transaction;
9
use Throwable;
10
use Yiisoft\Data\Writer\DataWriterInterface;
11
12
final class EntityWriter implements DataWriterInterface
13
{
14
    private ORMInterface $orm;
15
16
    public function __construct(ORMInterface $orm)
17
    {
18
        $this->orm = $orm;
19
    }
20
21
    /**
22
     * @throws Throwable
23
     */
24
    public function write(iterable $items): void
25
    {
26
        $transaction = new Transaction($this->orm);
27
        foreach ($items as $entity) {
28
            $transaction->persist($entity);
29
        }
30
        $transaction->run();
31
    }
32
}
33