|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* This program is free software. It comes without any warranty, to |
|
4
|
|
|
* the extent permitted by applicable law. You can redistribute it |
|
5
|
|
|
* and/or modify it under the terms of the Do What The Fuck You Want |
|
6
|
|
|
* To Public License, Version 2, as published by Sam Hocevar. See |
|
7
|
|
|
* http://www.wtfpl.net/ for more details. |
|
8
|
|
|
*/ |
|
9
|
|
|
|
|
10
|
|
|
declare(strict_types = 1); |
|
11
|
|
|
|
|
12
|
|
|
namespace hanneskod\classtools\Iterator\Filter; |
|
13
|
|
|
|
|
14
|
|
|
use hanneskod\classtools\Iterator\ClassIterator; |
|
15
|
|
|
use hanneskod\classtools\Iterator\Filter; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* Filter classes based ReflectionClass method |
|
19
|
|
|
* |
|
20
|
|
|
* @author Hannes Forsgård <[email protected]> |
|
21
|
|
|
*/ |
|
22
|
|
|
final class WhereFilter extends ClassIterator implements Filter |
|
23
|
|
|
{ |
|
24
|
|
|
use FilterTrait; |
|
25
|
|
|
|
|
26
|
|
|
/** |
|
27
|
|
|
* @var string Name of ReflectionClass method to evaluate |
|
28
|
|
|
*/ |
|
29
|
|
|
private $methodName; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* @var mixed Expected return value |
|
33
|
|
|
*/ |
|
34
|
|
|
private $returnValue; |
|
35
|
|
|
|
|
36
|
|
|
/** |
|
37
|
|
|
* Register method name and expected return value |
|
38
|
|
|
* |
|
39
|
|
|
* @param string $methodName Name of ReflectionClass method to evaluate |
|
40
|
|
|
* @param mixed $returnValue Expected return value |
|
41
|
|
|
*/ |
|
42
|
|
|
public function __construct($methodName, $returnValue = true) |
|
43
|
|
|
{ |
|
44
|
|
|
parent::__construct(); |
|
45
|
|
|
$this->methodName = $methodName; |
|
46
|
|
|
$this->returnValue = $returnValue; |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
|
|
public function getIterator(): iterable |
|
50
|
|
|
{ |
|
51
|
|
|
$methodName = $this->methodName; |
|
52
|
|
|
foreach ($this->getBoundIterator() as $className => $reflectedClass) { |
|
53
|
|
|
if ($reflectedClass->$methodName() == $this->returnValue) { |
|
54
|
|
|
yield $className => $reflectedClass; |
|
55
|
|
|
} |
|
56
|
|
|
} |
|
57
|
|
|
} |
|
58
|
|
|
} |
|
59
|
|
|
|