Your project should use return types

More information: https://insight.symfony.com/what-we-analyse/php.missing_return_typehint

in src/Wsdl.php, line 91
  1. }
  2. return $result;
  3. }
  4. protected function useExternalSchemas(string $method, array $parameters, ?array $parentResult, bool $returnOne = false)

    Method WsdlToPhp\WsdlHandler\Wsdl::useExternalSchemas() has no return type specified.

    Time to fix: about 9 minutes
    Read doc Open Issue Permalink
    Last edited by Mikaël DELSOL
  5. {
  6. $result = $parentResult;
  7. foreach ($this->getExternalSchemas() as $externalSchema) {
  8. $externalResult = call_user_func_array([$externalSchema, $method], $parameters);