The method setIdentityProvider() does not exist on SimpleSAML\SAML2\Process...yProviderAwareInterface.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
25
$validator->/** @scrutinizer ignore-call */
26
setIdentityProvider($this->idpMetadata);
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.
The method setIdentityProvider() does not exist on SimpleSAML\SAML2\Process...raintValidatorInterface.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
25
$validator->/** @scrutinizer ignore-call */
26
setIdentityProvider($this->idpMetadata);
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.
Loading history...
26
}
27
28
if ($validator instanceof ServiceProviderAwareInterface) {
The method setServiceProvider() does not exist on SimpleSAML\SAML2\Process...raintValidatorInterface.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
29
$validator->/** @scrutinizer ignore-call */
30
setServiceProvider($this->spMetadata);
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.
The method setServiceProvider() does not exist on SimpleSAML\SAML2\Process...eProviderAwareInterface.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
29
$validator->/** @scrutinizer ignore-call */
30
setServiceProvider($this->spMetadata);
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.
Loading history...
30
}
31
32
$this->validators[] = $validator;
33
}
34
35
36
/**
37
* Runs all the validations in the validation chain.
38
*
39
* If this function returns, all validations have been succesful.
40
*
41
* @throws \SimpleSAML\SAML2\Exception\ConstraintViolationFailedException when one of the conditions fail.
42
*/
43
public function validate(SerializableElementInterface $element): void
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.