It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
46
47
/**
48
* @param $uri
49
* @param null $payload
50
* @param array $options
51
* @return mixed
52
*/
53
abstract function patch($uri, $payload = null, array $options = array());
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
54
55
/**
56
* @param $uri
57
* @param null $payload
58
* @param array $options
59
* @return mixed
60
*/
61
abstract function put($uri, $payload = null, array $options = array());
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
62
63
/**
64
* @param $uri
65
* @param array $options
66
* @return mixed
67
*/
68
abstract function get($uri, array $options = array());
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
69
70
/**
71
* @param $uri
72
* @param array $options
73
* @return mixed
74
*/
75
abstract function head($uri, array $options = array());
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
76
77
/**
78
* @param $uri
79
* @param array $options
80
* @return mixed
81
*/
82
abstract function delete($uri, array $options = array());
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
83
84
/**
85
* @param $uri
86
* @param array $options
87
* @return mixed
88
*/
89
abstract function options($uri, array $options = array());
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
90
91
/**
92
* @param $uri
93
* @param array $options
94
* @return mixed
95
*/
96
abstract function trace($uri, array $options = array());
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.