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

EntityWriter   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 19
ccs 0
cts 7
cp 0
rs 10
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A write() 0 7 2
A __construct() 0 3 1
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