Passed
Push — master ( 366f40...c67819 )
by Christian
13:04 queued 10s
created

app/administration/src/app/init/http.init.js (2 issues)

1
const HttpClient = Shopware.Classes._private.HttpFactory;
0 ignored issues
show
The variable Shopware seems to be never declared. If this is a global, consider adding a /** global: Shopware */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
2
3
export default function initializeHttpClient() {
4
    return HttpClient(Shopware.Context.api);
0 ignored issues
show
The variable Shopware seems to be never declared. If this is a global, consider adding a /** global: Shopware */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
5
}
6