blob: 55b9b836c8a0de53d79718001cb390ace8101844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php
namespace ipl\Validator;
/**
* Validates whether the value exists in the haystack created by the callback
*/
class DeferredInArrayValidator extends InArrayValidator
{
/** @var callable Callback to create the haystack array */
protected $callback;
/**
* Create a new deferredInArray validator
*
* **Required parameter:**
*
* - `callback`: (`callable`) The callback to create haystack
*
* **Optional parameter:**
*
* *options: (`array`) Following option can be defined:*
*
* * `strict`: (`bool`) Whether the types of the needle in the haystack should also match, default `false`
*
* @param callable $callback Validation callback
* @param array $options
*/
public function __construct(callable $callback, array $options = [])
{
$this->callback = $callback;
parent::__construct($options);
}
public function getHaystack(): array
{
return $this->haystack ?? call_user_func($this->callback);
}
/**
* Set the callback
*
* @param callable $callback
*
* @return $this
*/
public function setCallback(callable $callback): self
{
$this->haystack = null;
$this->callback = $callback;
return $this;
}
}
|