Passed
Push — master ( 7bba5d...c1c3fd )
by Fabrice
02:35
created

ArrayWalkRecursiveTransformer::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 5
Ratio 100 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 5
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 2
1
<?php
2
3
/*
4
 * This file is part of YaEtl.
5
 *     (c) Fabrice de Stefanis / https://github.com/fab2s/YaEtl
6
 * This source file is licensed under the MIT license which you will
7
 * find in the LICENSE file or at https://opensource.org/licenses/MIT
8
 */
9
10
namespace fab2s\YaEtl\Transformers\Arrays;
11
12
use fab2s\YaEtl\Transformers\TransformerAbstract;
13
14
/**
15
 * Class ArrayWalkRecursiveTransformer
16
 */
17 View Code Duplication
class ArrayWalkRecursiveTransformer extends TransformerAbstract
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
18
{
19
    /**
20
     * Any callable with two argument which returns something
21
     *
22
     * @var callable
23
     */
24
    protected $callable;
25
26
    /**
27
     * @var mixed
28
     */
29
    protected $userdata;
30
31
    /**
32
     * @param callable   $callable Worth nothing to say that the first callback argument should
33
     *                             be a reference if you want anything to append to the record
34
     * @param null|mixed $userdata
35
     */
36
    public function __construct(callable $callable, $userdata = null)
37
    {
38
        $this->callable = $callable;
39
        $this->userdata = $userdata;
40
    }
41
42
    /**
43
     * Execute the array_map call
44
     *
45
     * @param mixed $record
46
     *
47
     * @return mixed
48
     */
49
    public function exec($record)
50
    {
51
        if (!\array_walk_recursive($this->callable, $record, $this->userdata)) {
52
            throw new YaEtlException('array_walk_recursive call failed', 1, null, [
53
                'record' => $record,
54
            ]);
55
        }
56
57
        return $record;
58
    }
59
}
60