Passed
Pull Request — master (#94)
by Aleksei
03:06
created

EntityWriter   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 11
c 2
b 0
f 0
dl 0
loc 28
ccs 0
cts 12
cp 0
rs 10
wmc 5

3 Methods

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