GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 0113e6...490b6c )
by SignpostMarv
02:32
created

StaticMethodCollector   A

Complexity

Total Complexity 33

Size/Duplication

Total Lines 222
Duplicated Lines 0 %

Test Coverage

Coverage 92.59%

Importance

Changes 0
Metric Value
dl 0
loc 222
ccs 75
cts 81
cp 0.9259
rs 9.3999
c 0
b 0
f 0
wmc 33

5 Methods

Rating   Name   Duplication   Size   Complexity  
A Collect() 0 13 3
A shouldContainInterfaces() 0 3 2
C FilterMethods() 0 49 9
C CollectInterfaces() 0 54 15
A __construct() 0 55 4
1
<?php
2
3
declare(strict_types=1);
4
/**
5
* @author SignpostMarv
6
*/
7
8
namespace SignpostMarv\DaftInterfaceCollector;
9
10
use Generator;
11
use ReflectionClass;
12
use ReflectionMethod;
13
use Traversable;
14
15
class StaticMethodCollector
16
{
17
    /**
18
    * @var array<string, array<int, string>>
19
    */
20
    private $staticMethods;
21
22
    /**
23
    * @var string[]
24
    */
25
    private $interfaces = [];
26
27
    /**
28
    * @var array<int, string>
29
    */
30
    private $processedSources = [];
31
32
    /**
33
    * @var string[]
34
    */
35
    private $alreadyYielded = [];
36
37
    /**
38
    * @var bool
39
    */
40
    private $autoResetProcessedSources;
41
42 4
    public function __construct(
43
        array $staticMethods,
44
        array $interfaces,
45
        bool $autoResetProcessedSources = true
46
    ) {
47 4
        $staticMethods = array_filter(
48 4
            $staticMethods,
49
            /**
50
            * @param mixed $maybe
51
            */
52
            function ($maybe) : bool {
53 4
                return is_string($maybe) && interface_exists($maybe);
54 4
            },
55 4
            ARRAY_FILTER_USE_KEY
56
        );
57
58
        /**
59
        * @var array<string, array<int, string>> $filtered
60
        */
61 4
        $filtered = [];
62
63
        /**
64
        * @var string $interface
65
        * @var array<string, array<int, string>> $methods
66
        */
67 4
        foreach ($staticMethods as $interface => $methods) {
68 4
            $ref = new ReflectionClass($interface);
69
70 4
            $filtered[$interface] = $this->FilterMethods($ref, $methods);
71
        }
72
73
        /**
74
        * @var array<string, array<int, string>> $filtered
75
        */
76
        $filtered = array_filter($filtered, function (array $methods) : bool {
77 4
            return count($methods) > 0;
78 4
        });
79
80
        /**
81
        * @var string[] $filteredInterfaces
82
        */
83 4
        $filteredInterfaces = array_filter(
84 4
            $interfaces,
85
            /**
86
            * @param mixed $maybe
87
            */
88
            function ($maybe) : bool {
89 4
                return is_string($maybe) && interface_exists($maybe);
90 4
            }
91
        );
92
93 4
        $this->interfaces = $filteredInterfaces;
94
95 4
        $this->staticMethods = $filtered;
96 4
        $this->autoResetProcessedSources = $autoResetProcessedSources;
97 4
    }
98
99 4
    public function Collect(string ...$implementations) : Generator
100
    {
101 4
        if ($this->autoResetProcessedSources) {
102 2
            $this->processedSources = [];
103 2
            $this->alreadyYielded = [];
104
        }
105
106 4
        if ($this->autoResetProcessedSources) {
107 2
            $this->processedSources = [];
108 2
            $this->alreadyYielded = [];
109
        }
110
111 4
        yield from $this->CollectInterfaces(...$implementations);
112 4
    }
113
114 4
    protected function CollectInterfaces(string ...$implementations) : Generator
115
    {
116
        /**
117
        * @var string[] $interfaces
118
        */
119 4
        $interfaces = array_keys($this->staticMethods);
120 4
        foreach (array_filter($implementations, 'class_exists') as $implementation) {
121
            if (
122 4
                in_array($implementation, $this->processedSources, true) ||
123 4
                in_array($implementation, $this->alreadyYielded, true)
124
            ) {
125 2
                continue;
126
            }
127 4
            $this->processedSources[] = $implementation;
128
129
            /**
130
            * @var string $interface
131
            */
132 4
            foreach ($this->interfaces as $interface) {
133 4
                if (is_a($implementation, $interface, true)) {
134
                    yield $implementation;
135
                    $this->alreadyYielded[] = $implementation;
136 4
                    break;
137
                }
138
            }
139
140 4
            foreach ($interfaces as $interface) {
141 4
                if (is_a($implementation, $interface, true)) {
142
                    /**
143
                    * @var array<int, string> $types
144
                    */
145 4
                    foreach ($this->staticMethods[$interface] as $method => $types) {
146
                        /**
147
                        * @var iterable<string> $methodResult
148
                        */
149 4
                        $methodResult = $implementation::$method();
150
151
                        /**
152
                        * @var string $result
153
                        */
154 4
                        foreach ($methodResult as $result) {
155 4
                            if (in_array($result, $this->alreadyYielded, true)) {
156
                                continue;
157
                            }
158 4
                            foreach ($types as $type) {
0 ignored issues
show
Bug introduced by
The expression $types of type string is not traversable.
Loading history...
159 4
                                if (is_a($result, $type, true)) {
160 4
                                    yield $result;
161 4
                                    $this->alreadyYielded[] = $result;
162 4
                                    continue;
163
                                }
164
                            }
165 4
                            foreach ($interfaces as $checkResultWithInterface) {
166 4
                                if (is_a($result, $checkResultWithInterface, true)) {
167 4
                                    yield from $this->CollectInterfaces($result);
168
                                }
169
                            }
170
                        }
171
                    }
172
                }
173
            }
174
        }
175 4
    }
176
177
    /**
178
    * @param mixed $maybe
179
    */
180
    protected function shouldContainInterfaces($maybe) : bool
181
    {
182
        return is_string($maybe) && interface_exists($maybe);
183
    }
184
185
    /**
186
    * @param array<string, array<int, string>> $methods
187
    */
188 4
    private function FilterMethods(ReflectionClass $ref, array $methods) : array
189
    {
190 4
        $methods = array_filter(
191 4
            $methods,
192
            /**
193
            * @param mixed $maybe
194
            */
195
            function ($maybe) use ($ref) : bool {
196 4
                if (is_string($maybe) && $ref->hasMethod($maybe)) {
197
                    /**
198
                    * @var ReflectionMethod $refMethod
199
                    */
200 4
                    $refMethod = $ref->getMethod($maybe);
201
202
                    if (
203 4
                        $refMethod->isStatic() &&
204 4
                        $refMethod->isPublic() &&
205 4
                        0 === $refMethod->getNumberOfRequiredParameters() &&
206 4
                        $refMethod->hasReturnType()
207
                    ) {
208
                        /**
209
                        * @var \ReflectionType $refReturn
210
                        */
211 4
                        $refReturn = $refMethod->getReturnType();
212
213
                        return
214 4
                            'array' === $refReturn->__toString() ||
0 ignored issues
show
Deprecated Code introduced by
The function ReflectionType::__toString() has been deprecated: 7.1.0:8.0.0 Please use getName() ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

214
                            'array' === /** @scrutinizer ignore-deprecated */ $refReturn->__toString() ||

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
215 4
                            is_a((string) $refReturn->__toString(), Traversable::class, true);
0 ignored issues
show
Deprecated Code introduced by
The function ReflectionType::__toString() has been deprecated: 7.1.0:8.0.0 Please use getName() ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

215
                            is_a((string) /** @scrutinizer ignore-deprecated */ $refReturn->__toString(), Traversable::class, true);

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
216
                    }
217
                }
218
219
                return false;
220 4
            },
221 4
            ARRAY_FILTER_USE_KEY
222
        );
223
224 4
        return array_map(
225
            function (array $methodInterfaces) : array {
226 4
                return array_filter(
227 4
                    $methodInterfaces,
228
                    /**
229
                    * @param mixed $maybe
230
                    */
231
                    function ($maybe) : bool {
232 4
                        return is_string($maybe) && interface_exists($maybe);
233 4
                    }
234
                );
235 4
            },
236 4
            $methods
237
        );
238
    }
239
}
240