| 1 | <?php |
||
| 12 | class SwitchChoose implements Processor |
||
| 13 | { |
||
| 14 | use Processor\Implementation, |
||
| 15 | Helper\GetByReference |
||
| 16 | { |
||
| 17 | Helper\GetByReference::withSourceAndTarget insteadof Processor\Implementation; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Apply processing to a single node |
||
| 22 | * |
||
| 23 | * @param Node $node |
||
| 24 | */ |
||
| 25 | 1 | public function applyToNode(Node $node) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * Choose on of the cases |
||
| 36 | * |
||
| 37 | * @param string $ref Property name of source |
||
| 38 | * @param object $cases |
||
| 39 | * @return mixed |
||
| 40 | */ |
||
| 41 | 1 | protected function choose($ref, $cases) |
|
| 46 | } |
||
| 47 |
If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:
If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.