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