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 sendPOST() does not exist on roaresearch\yii2\roa\test\Tester.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
23
$I->/** @scrutinizer ignore-call */
24
sendPOST($this->getRoute(), [
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 seeResponseCodeIs() does not exist on roaresearch\yii2\roa\test\Tester.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
28
$I->/** @scrutinizer ignore-call */
29
seeResponseCodeIs(HttpCode::OK);
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 seeResponseIsJson() does not exist on roaresearch\yii2\roa\test\Tester.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
29
$I->/** @scrutinizer ignore-call */
30
seeResponseIsJson();
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 seeResponseMatchesJsonType() does not exist on roaresearch\yii2\roa\test\Tester.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
30
$I->/** @scrutinizer ignore-call */
31
seeResponseMatchesJsonType([
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 grabDataFromResponseByJsonPath() does not exist on roaresearch\yii2\roa\test\Tester.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
36
$I->/** @scrutinizer ignore-call */
37
grabDataFromResponseByJsonPath('access_token')[0]
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...
37
);
38
}
39
40
/**
41
* @return string url route which generates the token.
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.