1 | <?php |
||
15 | class InputValue extends AbstractValue |
||
16 | { |
||
17 | /** |
||
18 | * InputValue constructor. |
||
19 | * @param iterable $values |
||
20 | * @param int $offset |
||
21 | */ |
||
22 | public function __construct(iterable $values, int $offset = 0) |
||
26 | |||
27 | /** |
||
28 | * @param iterable $values |
||
29 | * @return iterable |
||
30 | */ |
||
31 | private function getCached(iterable $values): iterable |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | public function toString(): string |
||
59 | |||
60 | /** |
||
61 | * @return iterable |
||
62 | */ |
||
63 | public function getValue(): iterable |
||
69 | } |
||
70 |
Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.