| Total Complexity | 8 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 9 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait BootsCallProxies |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var Fluent|null |
||
| 13 | */ |
||
| 14 | protected ?Fluent $proxy = null; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Boots the fluent object of call proxies. |
||
| 18 | * |
||
| 19 | * @param string|null $method |
||
| 20 | * |
||
| 21 | * @return void |
||
| 22 | */ |
||
| 23 | 5 | public function bootCallProxies(?string $method = null): void |
|
| 50 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.