Completed
Push — master ( 62cb27...c16962 )
by mains
03:25
created

php/Requests/GetUserConfig.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
class GetUserConfig extends AbstractRequest
3
{
4
		
5
    function getApiEndPoint()
6
    {
7
        return '/v3/user/config/';
8
    }
9
    function getPayload()
10
    {
11
        return array(
12
        );
13
    }
14
    function getMethod()
15
    {
16
        return 'GET';
17
    }
18
}
19
0 ignored issues
show
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
20