| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 27 | #[Route('/xmlrpc', name: 'xml_rpc', methods: ['POST'])] |
||
| 28 | public function serve(): Response |
||
| 29 | { |
||
| 30 | $xmlrpcResponse = $this->server->service(null, true); |
||
| 31 | $response = new Response($xmlrpcResponse, 200, ['Content-Type' => 'text/xml']); |
||
| 32 | // there should be no need to disable response caching since this is only accessed via POST |
||
| 33 | return $response; |
||
| 34 | } |
||
| 36 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths