Passed
Pull Request — master (#94)
by Aleksei
04:06 queued 56s
created

EntityWriter::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
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
    public function delete(iterable $items): void
34
    {
35
        $transaction = new Transaction($this->orm);
36
        foreach ($items as $entity) {
37
            $transaction->delete($entity);
38
        }
39
        $transaction->run();
40
    }
41
}
42