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, [
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.