Passed
Pull Request — master (#90)
by Aleksei
07:03
created

EntityWriter::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 2
ccs 0
cts 2
cp 0
crap 2
rs 10
c 1
b 0
f 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
        $this->orm = $orm;
18
    }
19
20
    /**
21
     * @throws Throwable
22
     */
23
    public function write(iterable $items): void
24
    {
25
        $transaction = new Transaction($this->orm);
26
        foreach ($items as $entity) {
27
            $transaction->persist($entity);
28
        }
29
        $transaction->run();
30
    }
31
}
32